toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final endpointAuthorization = this.endpointAuthorization;
final endpointUri = this.endpointUri;
final name = this.name;
final state = this.state;
final subscriberConfigs = this.subscriberConfigs;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'endpointAuthorization': ?endpointAuthorization,
'endpointUri': ?endpointUri,
'name': ?name,
'state': ?state,
'subscriberConfigs': ?subscriberConfigs,
'updateTime': ?updateTime,
};
}