class commonAccountdetailsResponse { AccountDetails? accountDetails; BalanceDetails? balanceDetails; List? ledgerList; String? error; String? message; commonAccountdetailsResponse( {this.accountDetails, this.balanceDetails, this.ledgerList, this.error, this.message}); commonAccountdetailsResponse.fromJson(Map json) { accountDetails = json['account_details'] != null ? new AccountDetails.fromJson(json['account_details']) : null; balanceDetails = json['balance_details'] != null ? new BalanceDetails.fromJson(json['balance_details']) : null; if (json['ledger_list'] != null) { ledgerList = []; json['ledger_list'].forEach((v) { ledgerList!.add(new LedgerList.fromJson(v)); }); } error = json['error']; message = json['message']; } Map toJson() { final Map data = new Map(); if (this.accountDetails != null) { data['account_details'] = this.accountDetails!.toJson(); } if (this.balanceDetails != null) { data['balance_details'] = this.balanceDetails!.toJson(); } if (this.ledgerList != null) { data['ledger_list'] = this.ledgerList!.map((v) => v.toJson()).toList(); } data['error'] = this.error; data['message'] = this.message; return data; } } class AccountDetails { String? id; String? type; String? refId; String? name; String? address; String? createdDatetime; String? bankName; String? bankBranchName; String? bankIfscCode; String? bankAccountHolderName; String? bankAccountNumber; String? bankUpiId; String? state; String? district; String? subLocality; AccountDetails( {this.id, this.type, this.refId, this.name, this.address, this.createdDatetime, this.bankName, this.bankBranchName, this.bankIfscCode, this.bankAccountHolderName, this.bankAccountNumber, this.bankUpiId, this.state, this.district, this.subLocality}); AccountDetails.fromJson(Map json) { id = json['id']; type = json['type']; refId = json['ref_id']; name = json['name']; address = json['address']; createdDatetime = json['created_datetime']; bankName = json['bank_name']; bankBranchName = json['bank_branch_name']; bankIfscCode = json['bank_ifsc_code']; bankAccountHolderName = json['bank_account_holder_name']; bankAccountNumber = json['bank_account_number']; bankUpiId = json['bank_upi_id']; state = json['state']; district = json['district']; subLocality = json['sub_locality']; } Map toJson() { final Map data = new Map(); data['id'] = this.id; data['type'] = this.type; data['ref_id'] = this.refId; data['name'] = this.name; data['address'] = this.address; data['created_datetime'] = this.createdDatetime; data['bank_name'] = this.bankName; data['bank_branch_name'] = this.bankBranchName; data['bank_ifsc_code'] = this.bankIfscCode; data['bank_account_holder_name'] = this.bankAccountHolderName; data['bank_account_number'] = this.bankAccountNumber; data['bank_upi_id'] = this.bankUpiId; data['state'] = this.state; data['district'] = this.district; data['sub_locality'] = this.subLocality; return data; } } class BalanceDetails { String? totalDebit; String? totalCredit; String? balance; BalanceDetails({this.totalDebit, this.totalCredit, this.balance}); BalanceDetails.fromJson(Map json) { totalDebit = json['total_debit']; totalCredit = json['total_credit']; balance = json['balance']; } Map toJson() { final Map data = new Map(); data['total_debit'] = this.totalDebit; data['total_credit'] = this.totalCredit; data['balance'] = this.balance; return data; } } class LedgerList { String? id; String? accountId; String? refType; String? refId; String? type; String? description; String? creditAmount; String? debitAmount; String? date; String? createdDatetime; LedgerList( {this.id, this.accountId, this.refType, this.refId, this.type, this.description, this.creditAmount, this.debitAmount, this.date, this.createdDatetime}); LedgerList.fromJson(Map json) { id = json['id']; accountId = json['account_id']; refType = json['ref_type']; refId = json['ref_id']; type = json['type']; description = json['description']; creditAmount = json['credit_amount']; debitAmount = json['debit_amount']; date = json['date']; createdDatetime = json['created_datetime']; } Map toJson() { final Map data = new Map(); data['id'] = this.id; data['account_id'] = this.accountId; data['ref_type'] = this.refType; data['ref_id'] = this.refId; data['type'] = this.type; data['description'] = this.description; data['credit_amount'] = this.creditAmount; data['debit_amount'] = this.debitAmount; data['date'] = this.date; data['created_datetime'] = this.createdDatetime; return data; } }