Class: Google::Apis::AlertcenterV1beta1::ApnsCertificateExpirationInfo

Inherits:
Object
  • Object
show all
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 "APNS certificate is expiring soon" and "APNS certificate has expired" alerts.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ApnsCertificateExpirationInfo

Returns a new instance of ApnsCertificateExpirationInfo.



556
557
558
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 556

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#apple_idString

The Apple ID used to create the certificate. It may be blank if admins didn't enter it. Corresponds to the JSON property appleId

Returns:

  • (String)


544
545
546
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 544

def apple_id
  @apple_id
end

#expiration_timeString

The expiration date of the APNS certificate. Corresponds to the JSON property expirationTime

Returns:

  • (String)


549
550
551
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 549

def expiration_time
  @expiration_time
end

#uidString

The UID of the certificate. Corresponds to the JSON property uid

Returns:

  • (String)


554
555
556
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 554

def uid
  @uid
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



561
562
563
564
565
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 561

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