# 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 AdmCredential. # class AdmCredentialProperties include MsRestAzure # @return [String] Gets or sets the client identifier. attr_accessor :client_id # @return [String] Gets or sets the credential secret access key. attr_accessor :client_secret # @return [String] Gets or sets the URL of the authorization token. attr_accessor :auth_token_url # # 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.client_id output_object['clientId'] = serialized_property unless serialized_property.nil? serialized_property = object.client_secret output_object['clientSecret'] = serialized_property unless serialized_property.nil? serialized_property = object.auth_token_url output_object['authTokenUrl'] = 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 [AdmCredentialProperties] Deserialized object. # def self.deserialize_object(object) return if object.nil? output_object = AdmCredentialProperties.new deserialized_property = object['clientId'] output_object.client_id = deserialized_property deserialized_property = object['clientSecret'] output_object.client_secret = deserialized_property deserialized_property = object['authTokenUrl'] output_object.auth_token_url = deserialized_property output_object end end end end