Class: Google::Apis::AlertcenterV1beta1::ApnsCertificateExpirationInfo
- Inherits:
-
Object
- Object
- Google::Apis::AlertcenterV1beta1::ApnsCertificateExpirationInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/alertcenter_v1beta1/classes.rb,
lib/google/apis/alertcenter_v1beta1/representations.rb,
lib/google/apis/alertcenter_v1beta1/representations.rb
Overview
The explanation message associated with ApnsCertificationExpiring and ApnsCertificationExpired alerts.
Instance Attribute Summary collapse
-
#apple_id ⇒ String
The Apple ID used for the certificate, may be blank if admins did not enter it.
-
#expiration_time ⇒ String
The expiration date of the APNS Certificate.
-
#uid ⇒ String
The UID for the certificate.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ApnsCertificateExpirationInfo
constructor
A new instance of ApnsCertificateExpirationInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ApnsCertificateExpirationInfo
Returns a new instance of ApnsCertificateExpirationInfo.
512 513 514 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 512 def initialize(**args) update!(**args) end |
Instance Attribute Details
#apple_id ⇒ String
The Apple ID used for the certificate, may be blank if admins did not enter it.
Corresponds to the JSON property appleId
500 501 502 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 500 def apple_id @apple_id end |
#expiration_time ⇒ String
The expiration date of the APNS Certificate.
Corresponds to the JSON property expirationTime
505 506 507 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 505 def expiration_time @expiration_time end |
#uid ⇒ String
The UID for the certificate.
Corresponds to the JSON property uid
510 511 512 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 510 def uid @uid end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
517 518 519 520 521 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 517 def update!(**args) @apple_id = args[:apple_id] if args.key?(:apple_id) @expiration_time = args[:expiration_time] if args.key?(:expiration_time) @uid = args[:uid] if args.key?(:uid) end |