class Google::Apis::PrivatecaV1::RevocationDetails

Describes fields that are relavent to the revocation of a Certificate.

Attributes

revocation_state[RW]

Indicates why a Certificate was revoked. Corresponds to the JSON property `revocationState` @return [String]

revocation_time[RW]

The time at which this Certificate was revoked. Corresponds to the JSON property `revocationTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/privateca_v1/classes.rb, line 2091
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/privateca_v1/classes.rb, line 2096
def update!(**args)
  @revocation_state = args[:revocation_state] if args.key?(:revocation_state)
  @revocation_time = args[:revocation_time] if args.key?(:revocation_time)
end