CertificateSigningRequestStatus class

CertificateSigningRequestStatus contains conditions used to indicate approved/denied/failed status of the request, and the issued certificate.

Constructors

CertificateSigningRequestStatus({String? certificate, List<CertificateSigningRequestCondition>? conditions})
Default constructor.
const
CertificateSigningRequestStatus.fromJson(Map<String, dynamic> json)
Creates a CertificateSigningRequestStatus from JSON data.
factory

Properties

certificate String?
certificate is populated with an issued certificate by the signer after an Approved condition is present. This field is set via the /status subresource. Once populated, this field is immutable.
final
conditions List<CertificateSigningRequestCondition>?
conditions applied to the request. Known conditions are "Approved", "Denied", and "Failed".
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, Object>
Converts a CertificateSigningRequestStatus instance to JSON data.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited