# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::NotificationHubs module Models # # Description of a NotificationHub ApnsCredential. # class ApnsCredentialProperties include MsRestAzure # @return [String] Gets or sets the APNS certificate. attr_accessor :apns_certificate # @return [String] Gets or sets the certificate key. attr_accessor :certificate_key # @return [String] Gets or sets the endpoint of this credential. attr_accessor :endpoint # @return [String] Gets or sets the Apns certificate Thumbprint attr_accessor :thumbprint # # Validate the object. Throws ValidationError if validation fails. # def validate # Nothing to validate end # # Serializes given Model object into Ruby Hash. # @param object Model object to serialize. # @return [Hash] Serialized object in form of Ruby Hash. # def self.serialize_object(object) object.validate output_object = {} serialized_property = object.apns_certificate output_object['apnsCertificate'] = serialized_property unless serialized_property.nil? serialized_property = object.certificate_key output_object['certificateKey'] = serialized_property unless serialized_property.nil? serialized_property = object.endpoint output_object['endpoint'] = serialized_property unless serialized_property.nil? serialized_property = object.thumbprint output_object['thumbprint'] = serialized_property unless serialized_property.nil? output_object end # # Deserializes given Ruby Hash into Model object. # @param object [Hash] Ruby Hash object to deserialize. # @return [ApnsCredentialProperties] Deserialized object. # def self.deserialize_object(object) return if object.nil? output_object = ApnsCredentialProperties.new deserialized_property = object['apnsCertificate'] output_object.apns_certificate = deserialized_property deserialized_property = object['certificateKey'] output_object.certificate_key = deserialized_property deserialized_property = object['endpoint'] output_object.endpoint = deserialized_property deserialized_property = object['thumbprint'] output_object.thumbprint = deserialized_property output_object end end end end