toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final conndSubscription = this.conndSubscription;
final conndTopic = this.conndTopic;
final controlPlaneSubscription = this.controlPlaneSubscription;
final controlPlaneTopic = this.controlPlaneTopic;
final locationId = this.locationId;
final name = this.name;
final runtimeEndpoint = this.runtimeEndpoint;
final schemaGcsBucket = this.schemaGcsBucket;
final serviceDirectory = this.serviceDirectory;
final state = this.state;
return {
'conndSubscription': ?conndSubscription,
'conndTopic': ?conndTopic,
'controlPlaneSubscription': ?controlPlaneSubscription,
'controlPlaneTopic': ?controlPlaneTopic,
'locationId': ?locationId,
'name': ?name,
'runtimeEndpoint': ?runtimeEndpoint,
'schemaGcsBucket': ?schemaGcsBucket,
'serviceDirectory': ?serviceDirectory,
'state': ?state,
};
}