toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attributeCondition = this.attributeCondition;
final attributeMapping = this.attributeMapping;
final aws = this.aws;
final description = this.description;
final disabled = this.disabled;
final displayName = this.displayName;
final expireTime = this.expireTime;
final name = this.name;
final oidc = this.oidc;
final saml = this.saml;
final state = this.state;
final x509 = this.x509;
return {
'attributeCondition': ?attributeCondition,
'attributeMapping': ?attributeMapping,
'aws': ?aws,
'description': ?description,
'disabled': ?disabled,
'displayName': ?displayName,
'expireTime': ?expireTime,
'name': ?name,
'oidc': ?oidc,
'saml': ?saml,
'state': ?state,
'x509': ?x509,
};
}