toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final caPool = this.caPool;
final httpServiceAttachment = this.httpServiceAttachment;
final isPrivate = this.isPrivate;
final pscAllowedProjects = this.pscAllowedProjects;
final sshServiceAttachment = this.sshServiceAttachment;
return {
'caPool': ?caPool,
'httpServiceAttachment': ?httpServiceAttachment,
'isPrivate': ?isPrivate,
'pscAllowedProjects': ?pscAllowedProjects,
'sshServiceAttachment': ?sshServiceAttachment,
};
}