toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attributes = this.attributes;
final createTime = this.createTime;
final description = this.description;
final displayName = this.displayName;
final documentation = this.documentation;
final endpoints = this.endpoints;
final name = this.name;
final paths = this.paths;
final updateTime = this.updateTime;
return {
'attributes': ?attributes,
'createTime': ?createTime,
'description': ?description,
'displayName': ?displayName,
'documentation': ?documentation,
'endpoints': ?endpoints,
'name': ?name,
'paths': ?paths,
'updateTime': ?updateTime,
};
}