toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  json[r'object'] = this.object;
  json[r'id'] = this.id;
  json[r'instance_id'] = this.instanceId;
  json[r'timestamp'] = this.timestamp;
  json[r'payer'] = this.payer;
  json[r'status'] = this.status;
  json[r'totals'] = this.totals;
  json[r'groups'] = this.groups;
  return json;
}