toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final artifactDeployments = this.artifactDeployments;
final createTime = this.createTime;
final deployTime = this.deployTime;
final name = this.name;
final runtimeConfig = this.runtimeConfig;
final runtimeDeploymentUri = this.runtimeDeploymentUri;
final state = this.state;
final undeployTime = this.undeployTime;
final updateTime = this.updateTime;
return {
'artifactDeployments': ?artifactDeployments,
'createTime': ?createTime,
'deployTime': ?deployTime,
'name': ?name,
'runtimeConfig': ?runtimeConfig,
'runtimeDeploymentUri': ?runtimeDeploymentUri,
'state': ?state,
'undeployTime': ?undeployTime,
'updateTime': ?updateTime,
};
}