toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final gatewayConfigs = this.gatewayConfigs;
final ipAddress = this.ipAddress;
final name = this.name;
final pscForwardingRule = this.pscForwardingRule;
final pscServiceAttachment = this.pscServiceAttachment;
final state = this.state;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'gatewayConfigs': ?gatewayConfigs,
'ipAddress': ?ipAddress,
'name': ?name,
'pscForwardingRule': ?pscForwardingRule,
'pscServiceAttachment': ?pscServiceAttachment,
'state': ?state,
'updateTime': ?updateTime,
};
}