toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accreditation = this.accreditation;
  final apiOperations = this.apiOperations;
  final attributes = this.attributes;
  final compliance = this.compliance;
  final createTime = this.createTime;
  final definitions = this.definitions;
  final deployments = this.deployments;
  final description = this.description;
  final displayName = this.displayName;
  final documentation = this.documentation;
  final lifecycle = this.lifecycle;
  final name = this.name;
  final selectedDeployment = this.selectedDeployment;
  final sourceMetadata = this.sourceMetadata;
  final specs = this.specs;
  final updateTime = this.updateTime;
  return {
    'accreditation': ?accreditation,
    'apiOperations': ?apiOperations,
    'attributes': ?attributes,
    'compliance': ?compliance,
    'createTime': ?createTime,
    'definitions': ?definitions,
    'deployments': ?deployments,
    'description': ?description,
    'displayName': ?displayName,
    'documentation': ?documentation,
    'lifecycle': ?lifecycle,
    'name': ?name,
    'selectedDeployment': ?selectedDeployment,
    'sourceMetadata': ?sourceMetadata,
    'specs': ?specs,
    'updateTime': ?updateTime,
  };
}