toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final endDateTime = this.endDateTime;
final endTimeType = this.endTimeType;
final id = this.id;
final paymentsAccount = this.paymentsAccount;
final paymentsAccountInfo = this.paymentsAccountInfo;
final resourceName = this.resourceName;
final startDateTime = this.startDateTime;
final startTimeType = this.startTimeType;
final status = this.status;
return {
'endDateTime': ?endDateTime,
'endTimeType': ?endTimeType,
'id': ?id,
'paymentsAccount': ?paymentsAccount,
'paymentsAccountInfo': ?paymentsAccountInfo,
'resourceName': ?resourceName,
'startDateTime': ?startDateTime,
'startTimeType': ?startTimeType,
'status': ?status,
};
}