toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final expectedNewPriceChargeTime = this.expectedNewPriceChargeTime;
final newPrice = this.newPrice;
final priceChangeMode = this.priceChangeMode;
final priceChangeState = this.priceChangeState;
return {
'expectedNewPriceChargeTime': ?expectedNewPriceChargeTime,
'newPrice': ?newPrice,
'priceChangeMode': ?priceChangeMode,
'priceChangeState': ?priceChangeState,
};
}