toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['customerType'] = this.customerType;
  data['category'] = this.category;
  data['subCategory'] = this.subCategory;
  data['transportType'] = this.transportType;
  data['sellerType'] = this.sellerType;
  data['sellerTypeEntityId'] = this.sellerTypeEntityId;
  data['userType'] = this.userType;
  data['buyerType'] = this.buyerType;
  data['buyerTypeEntityId'] = this.buyerTypeEntityId;
  data['transactionType'] = this.transactionType;
  data['currencyType'] = this.currencyType;
  data['connectionType'] = this.connectionType;
  data['serviceType'] = this.serviceType;
  data['region'] = this.region;
  data['opeartorUserId'] = this.opeartorUserId;
  data['opeartorUserName'] = this.opeartorUserName;
  data['billingAddressId'] = this.billingAddressId;
  data['creditLimitBalance'] = this.creditLimitBalance;
  return data;
}