toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final description = this.description;
  final displayName = this.displayName;
  final errors = this.errors;
  final expireTime = this.expireTime;
  final heartbeatTime = this.heartbeatTime;
  final labels = this.labels;
  final name = this.name;
  final serviceAccount = this.serviceAccount;
  final signalsEndpoint = this.signalsEndpoint;
  final source = this.source;
  final state = this.state;
  final ttl = this.ttl;
  final updateTime = this.updateTime;
  final version = this.version;
  return {
    'createTime': ?createTime,
    'description': ?description,
    'displayName': ?displayName,
    'errors': ?errors,
    'expireTime': ?expireTime,
    'heartbeatTime': ?heartbeatTime,
    'labels': ?labels,
    'name': ?name,
    'serviceAccount': ?serviceAccount,
    'signalsEndpoint': ?signalsEndpoint,
    'source': ?source,
    'state': ?state,
    'ttl': ?ttl,
    'updateTime': ?updateTime,
    'version': ?version,
  };
}