toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final billed = this.billed;
final campaign = this.campaign;
final checkInDate = this.checkInDate;
final checkOutDate = this.checkOutDate;
final commissionId = this.commissionId;
final hotelCenterId = this.hotelCenterId;
final hotelId = this.hotelId;
final orderId = this.orderId;
final reconciledValueMicros = this.reconciledValueMicros;
final resourceName = this.resourceName;
final status = this.status;
return {
'billed': ?billed,
'campaign': ?campaign,
'checkInDate': ?checkInDate,
'checkOutDate': ?checkOutDate,
'commissionId': ?commissionId,
'hotelCenterId': ?hotelCenterId,
'hotelId': ?hotelId,
'orderId': ?orderId,
'reconciledValueMicros': ?reconciledValueMicros,
'resourceName': ?resourceName,
'status': ?status,
};
}