GetCustomersCustomerBalanceTransactionsResponse.fromJson constructor

GetCustomersCustomerBalanceTransactionsResponse.fromJson(
  1. Object? json
)

Implementation

factory GetCustomersCustomerBalanceTransactionsResponse.fromJson(
    Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return GetCustomersCustomerBalanceTransactionsResponse(
    data: (map['data'] as List<Object?>)
        .map((el) => CustomerBalanceTransaction.fromJson(el))
        .toList(),
    hasMore: (map['has_more'] as bool),
    url: (map['url'] as String),
  );
}