toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['ReferenceId'] = this.referenceId;
  data['ResponseCode'] = this.responseCode;
  data['ResponseDescription'] = this.responseDescription;
  return data;
}