freeclimb 5.2.0 → 5.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/CHANGELOG.md +22 -2
 - data/Gemfile.lock +3 -3
 - data/README.md +31 -4
 - data/docs/AvailableNumber.md +0 -4
 - data/docs/BlobListResponse.md +32 -0
 - data/docs/BlobResult.md +32 -0
 - data/docs/CallResult.md +2 -2
 - data/docs/CreateBlobRequest.md +22 -0
 - data/docs/CreateConference.md +4 -2
 - data/docs/DefaultApi.md +835 -25
 - data/docs/ExportList.md +32 -0
 - data/docs/ExportOutputType.md +16 -0
 - data/docs/ExportRequest.md +24 -0
 - data/docs/ExportRequestOutput.md +18 -0
 - data/docs/ExportResourceType.md +17 -0
 - data/docs/ExportResult.md +40 -0
 - data/docs/ExportResultOutput.md +18 -0
 - data/docs/ExportStatus.md +21 -0
 - data/docs/IncomingNumberResult.md +0 -4
 - data/docs/ModifyBlobRequest.md +20 -0
 - data/docs/PlatformError.md +24 -0
 - data/docs/ReplaceBlobRequest.md +18 -0
 - data/docs/Say.md +2 -0
 - data/docs/TTSEngine.md +20 -0
 - data/docs/TTSEngineName.md +18 -0
 - data/lib/freeclimb/api/default_api.rb +1032 -12
 - data/lib/freeclimb/models/available_number.rb +1 -23
 - data/lib/freeclimb/models/blob_list_response.rb +303 -0
 - data/lib/freeclimb/models/blob_result.rb +332 -0
 - data/lib/freeclimb/models/call_result.rb +8 -8
 - data/lib/freeclimb/models/create_blob_request.rb +255 -0
 - data/lib/freeclimb/models/create_conference.rb +15 -5
 - data/lib/freeclimb/models/export_list.rb +304 -0
 - data/lib/freeclimb/models/export_output_type.rb +34 -0
 - data/lib/freeclimb/models/export_request.rb +276 -0
 - data/lib/freeclimb/models/export_request_output.rb +243 -0
 - data/lib/freeclimb/models/export_resource_type.rb +35 -0
 - data/lib/freeclimb/models/export_result.rb +405 -0
 - data/lib/freeclimb/models/export_result_output.rb +243 -0
 - data/lib/freeclimb/models/export_status.rb +39 -0
 - data/lib/freeclimb/models/incoming_number_result.rb +1 -23
 - data/lib/freeclimb/models/modify_blob_request.rb +245 -0
 - data/lib/freeclimb/models/platform_error.rb +244 -0
 - data/lib/freeclimb/models/replace_blob_request.rb +221 -0
 - data/lib/freeclimb/models/say.rb +10 -1
 - data/lib/freeclimb/models/tts_engine.rb +250 -0
 - data/lib/freeclimb/models/tts_engine_name.rb +36 -0
 - data/lib/freeclimb/version.rb +1 -1
 - data/lib/freeclimb.rb +16 -0
 - data/openapi.json +1245 -80
 - data/spec/api/default_api_spec.rb +328 -33
 - data/spec/models/account_result_spec.rb +3 -3
 - data/spec/models/available_number_spec.rb +3 -98
 - data/spec/models/blob_list_response_spec.rb +502 -0
 - data/spec/models/blob_result_spec.rb +489 -0
 - data/spec/models/call_result_spec.rb +39 -39
 - data/spec/models/conference_result_spec.rb +3 -3
 - data/spec/models/create_blob_request_spec.rb +273 -0
 - data/spec/models/create_conference_spec.rb +83 -35
 - data/spec/models/export_list_spec.rb +502 -0
 - data/spec/models/export_output_type_spec.rb +43 -0
 - data/spec/models/export_request_output_spec.rb +162 -0
 - data/spec/models/export_request_spec.rb +320 -0
 - data/spec/models/export_resource_type_spec.rb +59 -0
 - data/spec/models/export_result_output_spec.rb +162 -0
 - data/spec/models/export_result_spec.rb +718 -0
 - data/spec/models/export_status_spec.rb +123 -0
 - data/spec/models/incoming_number_result_spec.rb +6 -102
 - data/spec/models/log_result_spec.rb +3 -3
 - data/spec/models/message_result_spec.rb +3 -3
 - data/spec/models/modify_blob_request_spec.rb +226 -0
 - data/spec/models/platform_error_spec.rb +318 -0
 - data/spec/models/queue_result_spec.rb +3 -3
 - data/spec/models/replace_blob_request_spec.rb +176 -0
 - data/spec/models/say_spec.rb +50 -0
 - data/spec/models/sms_ten_dlc_partner_campaign_spec.rb +3 -3
 - data/spec/models/transcribe_utterance_spec.rb +3 -3
 - data/spec/models/tts_engine_name_spec.rb +75 -0
 - data/spec/models/tts_engine_spec.rb +183 -0
 - data/spec/spec_helper.rb +1 -1
 - data/yarn.lock +29 -29
 - metadata +50 -2
 
| 
         @@ -51,12 +51,6 @@ module Freeclimb 
     | 
|
| 
       51 
51 
     | 
    
         
             
                # Country of this phone number.
         
     | 
| 
       52 
52 
     | 
    
         
             
                attr_accessor :country
         
     | 
| 
       53 
53 
     | 
    
         | 
| 
       54 
     | 
    
         
            -
                # Indicates whether the phone number can handle Calls. Typically set to true for all numbers.
         
     | 
| 
       55 
     | 
    
         
            -
                attr_accessor :voice_enabled
         
     | 
| 
       56 
     | 
    
         
            -
             
     | 
| 
       57 
     | 
    
         
            -
                # Indication of whether the phone number can handle sending and receiving SMS messages. Typically set to true for all numbers.
         
     | 
| 
       58 
     | 
    
         
            -
                attr_accessor :sms_enabled
         
     | 
| 
       59 
     | 
    
         
            -
             
     | 
| 
       60 
54 
     | 
    
         
             
                # The offnet field is a boolean representing whether the number is offnet registered or not. This field will be rendered only for requests to the IncomingPhone number resource.
         
     | 
| 
       61 
55 
     | 
    
         
             
                attr_accessor :offnet
         
     | 
| 
       62 
56 
     | 
    
         | 
| 
         @@ -78,8 +72,6 @@ module Freeclimb 
     | 
|
| 
       78 
72 
     | 
    
         
             
                    _alias: :alias,
         
     | 
| 
       79 
73 
     | 
    
         
             
                    region: :region,
         
     | 
| 
       80 
74 
     | 
    
         
             
                    country: :country,
         
     | 
| 
       81 
     | 
    
         
            -
                    voice_enabled: :voiceEnabled,
         
     | 
| 
       82 
     | 
    
         
            -
                    sms_enabled: :smsEnabled,
         
     | 
| 
       83 
75 
     | 
    
         
             
                    offnet: :offnet,
         
     | 
| 
       84 
76 
     | 
    
         
             
                    tfn: :tfn
         
     | 
| 
       85 
77 
     | 
    
         
             
                  }
         
     | 
| 
         @@ -106,8 +98,6 @@ module Freeclimb 
     | 
|
| 
       106 
98 
     | 
    
         
             
                    _alias: :String,
         
     | 
| 
       107 
99 
     | 
    
         
             
                    region: :String,
         
     | 
| 
       108 
100 
     | 
    
         
             
                    country: :String,
         
     | 
| 
       109 
     | 
    
         
            -
                    voice_enabled: :Boolean,
         
     | 
| 
       110 
     | 
    
         
            -
                    sms_enabled: :Boolean,
         
     | 
| 
       111 
101 
     | 
    
         
             
                    offnet: :Boolean,
         
     | 
| 
       112 
102 
     | 
    
         
             
                    tfn: :TFN
         
     | 
| 
       113 
103 
     | 
    
         
             
                  }
         
     | 
| 
         @@ -124,8 +114,6 @@ module Freeclimb 
     | 
|
| 
       124 
114 
     | 
    
         
             
                    :_alias,
         
     | 
| 
       125 
115 
     | 
    
         
             
                    :region,
         
     | 
| 
       126 
116 
     | 
    
         
             
                    :country,
         
     | 
| 
       127 
     | 
    
         
            -
                    :voice_enabled,
         
     | 
| 
       128 
     | 
    
         
            -
                    :sms_enabled,
         
     | 
| 
       129 
117 
     | 
    
         
             
                    :offnet
         
     | 
| 
       130 
118 
     | 
    
         
             
                  ])
         
     | 
| 
       131 
119 
     | 
    
         
             
                end
         
     | 
| 
         @@ -204,14 +192,6 @@ module Freeclimb 
     | 
|
| 
       204 
192 
     | 
    
         
             
                    self.country = attributes[:country]
         
     | 
| 
       205 
193 
     | 
    
         
             
                  end
         
     | 
| 
       206 
194 
     | 
    
         | 
| 
       207 
     | 
    
         
            -
                  if attributes.key?(:voice_enabled)
         
     | 
| 
       208 
     | 
    
         
            -
                    self.voice_enabled = attributes[:voice_enabled]
         
     | 
| 
       209 
     | 
    
         
            -
                  end
         
     | 
| 
       210 
     | 
    
         
            -
             
     | 
| 
       211 
     | 
    
         
            -
                  if attributes.key?(:sms_enabled)
         
     | 
| 
       212 
     | 
    
         
            -
                    self.sms_enabled = attributes[:sms_enabled]
         
     | 
| 
       213 
     | 
    
         
            -
                  end
         
     | 
| 
       214 
     | 
    
         
            -
             
     | 
| 
       215 
195 
     | 
    
         
             
                  if attributes.key?(:offnet)
         
     | 
| 
       216 
196 
     | 
    
         
             
                    self.offnet = attributes[:offnet]
         
     | 
| 
       217 
197 
     | 
    
         
             
                  end
         
     | 
| 
         @@ -255,8 +235,6 @@ module Freeclimb 
     | 
|
| 
       255 
235 
     | 
    
         
             
                    _alias == other._alias &&
         
     | 
| 
       256 
236 
     | 
    
         
             
                    region == other.region &&
         
     | 
| 
       257 
237 
     | 
    
         
             
                    country == other.country &&
         
     | 
| 
       258 
     | 
    
         
            -
                    voice_enabled == other.voice_enabled &&
         
     | 
| 
       259 
     | 
    
         
            -
                    sms_enabled == other.sms_enabled &&
         
     | 
| 
       260 
238 
     | 
    
         
             
                    offnet == other.offnet &&
         
     | 
| 
       261 
239 
     | 
    
         
             
                    tfn == other.tfn
         
     | 
| 
       262 
240 
     | 
    
         
             
                end
         
     | 
| 
         @@ -270,7 +248,7 @@ module Freeclimb 
     | 
|
| 
       270 
248 
     | 
    
         
             
                # Calculates hash code according to all attributes.
         
     | 
| 
       271 
249 
     | 
    
         
             
                # @return [Integer] Hash code
         
     | 
| 
       272 
250 
     | 
    
         
             
                def hash
         
     | 
| 
       273 
     | 
    
         
            -
                  [uri, date_created, date_updated, revision, capabilities, campaign_id, phone_number_id, account_id, application_id, phone_number, _alias, region, country,  
     | 
| 
      
 251 
     | 
    
         
            +
                  [uri, date_created, date_updated, revision, capabilities, campaign_id, phone_number_id, account_id, application_id, phone_number, _alias, region, country, offnet, tfn].hash
         
     | 
| 
       274 
252 
     | 
    
         
             
                end
         
     | 
| 
       275 
253 
     | 
    
         | 
| 
       276 
254 
     | 
    
         
             
                # Builds the object from hash
         
     | 
| 
         @@ -0,0 +1,245 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # #FreeClimb API
         
     | 
| 
      
 2 
     | 
    
         
            +
            #
         
     | 
| 
      
 3 
     | 
    
         
            +
            # FreeClimb is a cloud-based application programming interface (API) that puts the power of the Vail platform in your hands. FreeClimb simplifies the process of creating applications that can use a full range of telephony features without requiring specialized or on-site telephony equipment. Using the FreeClimb REST API to write applications is easy! You have the option to use the language of your choice or hit the API directly. Your application can execute a command by issuing a RESTful request to the FreeClimb API. The base URL to send HTTP requests to the FreeClimb REST API is: /apiserver. FreeClimb authenticates and processes your request.
         
     | 
| 
      
 4 
     | 
    
         
            +
            #
         
     | 
| 
      
 5 
     | 
    
         
            +
            # The version of the OpenAPI document: 1.0.0
         
     | 
| 
      
 6 
     | 
    
         
            +
            # Contact: support@freeclimb.com
         
     | 
| 
      
 7 
     | 
    
         
            +
            # Generated by: https://openapi-generator.tech
         
     | 
| 
      
 8 
     | 
    
         
            +
            # OpenAPI Generator version: 7.9.0
         
     | 
| 
      
 9 
     | 
    
         
            +
            #
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            require "date"
         
     | 
| 
      
 12 
     | 
    
         
            +
            require "time"
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            module Freeclimb
         
     | 
| 
      
 15 
     | 
    
         
            +
              class ModifyBlobRequest
         
     | 
| 
      
 16 
     | 
    
         
            +
                attr_accessor :blob
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
                # Custom identifier for this blob that is unique for the owning account. It will be set to the blobId by default if not provided.
         
     | 
| 
      
 19 
     | 
    
         
            +
                attr_accessor :_alias
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
                # Attribute mapping from ruby-style variable name to JSON key.
         
     | 
| 
      
 22 
     | 
    
         
            +
                def self.attribute_map
         
     | 
| 
      
 23 
     | 
    
         
            +
                  {
         
     | 
| 
      
 24 
     | 
    
         
            +
                    blob: :blob,
         
     | 
| 
      
 25 
     | 
    
         
            +
                    _alias: :alias
         
     | 
| 
      
 26 
     | 
    
         
            +
                  }
         
     | 
| 
      
 27 
     | 
    
         
            +
                end
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
                # Returns all the JSON keys this model knows about
         
     | 
| 
      
 30 
     | 
    
         
            +
                def self.acceptable_attributes
         
     | 
| 
      
 31 
     | 
    
         
            +
                  attribute_map.values
         
     | 
| 
      
 32 
     | 
    
         
            +
                end
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
                # Attribute type mapping.
         
     | 
| 
      
 35 
     | 
    
         
            +
                def self.openapi_types
         
     | 
| 
      
 36 
     | 
    
         
            +
                  {
         
     | 
| 
      
 37 
     | 
    
         
            +
                    blob: :Object,
         
     | 
| 
      
 38 
     | 
    
         
            +
                    _alias: :String
         
     | 
| 
      
 39 
     | 
    
         
            +
                  }
         
     | 
| 
      
 40 
     | 
    
         
            +
                end
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
                # List of attributes with nullable: true
         
     | 
| 
      
 43 
     | 
    
         
            +
                def self.openapi_nullable
         
     | 
| 
      
 44 
     | 
    
         
            +
                  Set.new([])
         
     | 
| 
      
 45 
     | 
    
         
            +
                end
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
                # Initializes the object
         
     | 
| 
      
 48 
     | 
    
         
            +
                # @param [Hash] attributes Model attributes in the form of hash
         
     | 
| 
      
 49 
     | 
    
         
            +
                def initialize(attributes = {})
         
     | 
| 
      
 50 
     | 
    
         
            +
                  if !attributes.is_a?(Hash)
         
     | 
| 
      
 51 
     | 
    
         
            +
                    fail ArgumentError, "The input argument (attributes) must be a hash in `Freeclimb::ModifyBlobRequest` initialize method"
         
     | 
| 
      
 52 
     | 
    
         
            +
                  end
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
                  # check to see if the attribute exists and convert string to symbol for hash key
         
     | 
| 
      
 55 
     | 
    
         
            +
                  attributes = attributes.each_with_object({}) { |(k, v), h|
         
     | 
| 
      
 56 
     | 
    
         
            +
                    if !self.class.attribute_map.key?(k.to_sym)
         
     | 
| 
      
 57 
     | 
    
         
            +
                      fail ArgumentError, "`#{k}` is not a valid attribute in `Freeclimb::ModifyBlobRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
         
     | 
| 
      
 58 
     | 
    
         
            +
                    end
         
     | 
| 
      
 59 
     | 
    
         
            +
                    h[k.to_sym] = v
         
     | 
| 
      
 60 
     | 
    
         
            +
                  }
         
     | 
| 
      
 61 
     | 
    
         
            +
             
     | 
| 
      
 62 
     | 
    
         
            +
                  if attributes.key?(:blob)
         
     | 
| 
      
 63 
     | 
    
         
            +
                    self.blob = attributes[:blob]
         
     | 
| 
      
 64 
     | 
    
         
            +
                  end
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
                  if attributes.key?(:_alias)
         
     | 
| 
      
 67 
     | 
    
         
            +
                    self._alias = attributes[:_alias]
         
     | 
| 
      
 68 
     | 
    
         
            +
                  end
         
     | 
| 
      
 69 
     | 
    
         
            +
                end
         
     | 
| 
      
 70 
     | 
    
         
            +
             
     | 
| 
      
 71 
     | 
    
         
            +
                # Show invalid properties with the reasons. Usually used together with valid?
         
     | 
| 
      
 72 
     | 
    
         
            +
                # @return Array for valid properties with the reasons
         
     | 
| 
      
 73 
     | 
    
         
            +
                def list_invalid_properties
         
     | 
| 
      
 74 
     | 
    
         
            +
                  invalid_properties = []
         
     | 
| 
      
 75 
     | 
    
         
            +
                  if @blob.nil?
         
     | 
| 
      
 76 
     | 
    
         
            +
                    invalid_properties.push('invalid value for "blob", blob cannot be nil.')
         
     | 
| 
      
 77 
     | 
    
         
            +
                  end
         
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
                  if !@_alias.nil? && @_alias.to_s.length > 64
         
     | 
| 
      
 80 
     | 
    
         
            +
                    invalid_properties.push('invalid value for "_alias", the character length must be smaller than or equal to 64.')
         
     | 
| 
      
 81 
     | 
    
         
            +
                  end
         
     | 
| 
      
 82 
     | 
    
         
            +
             
     | 
| 
      
 83 
     | 
    
         
            +
                  invalid_properties
         
     | 
| 
      
 84 
     | 
    
         
            +
                end
         
     | 
| 
      
 85 
     | 
    
         
            +
             
     | 
| 
      
 86 
     | 
    
         
            +
                # Check to see if the all the properties in the model are valid
         
     | 
| 
      
 87 
     | 
    
         
            +
                # @return true if the model is valid
         
     | 
| 
      
 88 
     | 
    
         
            +
                def valid?
         
     | 
| 
      
 89 
     | 
    
         
            +
                  if @blob.nil?
         
     | 
| 
      
 90 
     | 
    
         
            +
                    false
         
     | 
| 
      
 91 
     | 
    
         
            +
                  else
         
     | 
| 
      
 92 
     | 
    
         
            +
                    list_invalid_properties.length == 0
         
     | 
| 
      
 93 
     | 
    
         
            +
                  end
         
     | 
| 
      
 94 
     | 
    
         
            +
                end
         
     | 
| 
      
 95 
     | 
    
         
            +
             
     | 
| 
      
 96 
     | 
    
         
            +
                # Custom attribute writer method with validation
         
     | 
| 
      
 97 
     | 
    
         
            +
                # @param [Object] _alias Value to be assigned
         
     | 
| 
      
 98 
     | 
    
         
            +
                def _alias=(_alias)
         
     | 
| 
      
 99 
     | 
    
         
            +
                  if !_alias.nil? && _alias.to_s.length > 64
         
     | 
| 
      
 100 
     | 
    
         
            +
                    fail ArgumentError, 'invalid value for "_alias", the character length must be smaller than or equal to 64.'
         
     | 
| 
      
 101 
     | 
    
         
            +
                  end
         
     | 
| 
      
 102 
     | 
    
         
            +
             
     | 
| 
      
 103 
     | 
    
         
            +
                  @_alias = _alias
         
     | 
| 
      
 104 
     | 
    
         
            +
                end
         
     | 
| 
      
 105 
     | 
    
         
            +
             
     | 
| 
      
 106 
     | 
    
         
            +
                # Checks equality by comparing each attribute.
         
     | 
| 
      
 107 
     | 
    
         
            +
                # @param [Object] Object to be compared
         
     | 
| 
      
 108 
     | 
    
         
            +
                def ==(other)
         
     | 
| 
      
 109 
     | 
    
         
            +
                  return true if equal?(other)
         
     | 
| 
      
 110 
     | 
    
         
            +
                  self.class == other.class &&
         
     | 
| 
      
 111 
     | 
    
         
            +
                    blob == other.blob &&
         
     | 
| 
      
 112 
     | 
    
         
            +
                    _alias == other._alias
         
     | 
| 
      
 113 
     | 
    
         
            +
                end
         
     | 
| 
      
 114 
     | 
    
         
            +
             
     | 
| 
      
 115 
     | 
    
         
            +
                # @see the `==` method
         
     | 
| 
      
 116 
     | 
    
         
            +
                # @param [Object] Object to be compared
         
     | 
| 
      
 117 
     | 
    
         
            +
                def eql?(other)
         
     | 
| 
      
 118 
     | 
    
         
            +
                  self == other
         
     | 
| 
      
 119 
     | 
    
         
            +
                end
         
     | 
| 
      
 120 
     | 
    
         
            +
             
     | 
| 
      
 121 
     | 
    
         
            +
                # Calculates hash code according to all attributes.
         
     | 
| 
      
 122 
     | 
    
         
            +
                # @return [Integer] Hash code
         
     | 
| 
      
 123 
     | 
    
         
            +
                def hash
         
     | 
| 
      
 124 
     | 
    
         
            +
                  [blob, _alias].hash
         
     | 
| 
      
 125 
     | 
    
         
            +
                end
         
     | 
| 
      
 126 
     | 
    
         
            +
             
     | 
| 
      
 127 
     | 
    
         
            +
                # Builds the object from hash
         
     | 
| 
      
 128 
     | 
    
         
            +
                # @param [Hash] attributes Model attributes in the form of hash
         
     | 
| 
      
 129 
     | 
    
         
            +
                # @return [Object] Returns the model itself
         
     | 
| 
      
 130 
     | 
    
         
            +
                def self.build_from_hash(attributes)
         
     | 
| 
      
 131 
     | 
    
         
            +
                  new.build_from_hash(attributes)
         
     | 
| 
      
 132 
     | 
    
         
            +
                end
         
     | 
| 
      
 133 
     | 
    
         
            +
             
     | 
| 
      
 134 
     | 
    
         
            +
                # Builds the object from hash
         
     | 
| 
      
 135 
     | 
    
         
            +
                # @param [Hash] attributes Model attributes in the form of hash
         
     | 
| 
      
 136 
     | 
    
         
            +
                # @return [Object] Returns the model itself
         
     | 
| 
      
 137 
     | 
    
         
            +
                def build_from_hash(attributes)
         
     | 
| 
      
 138 
     | 
    
         
            +
                  return nil unless attributes.is_a?(Hash)
         
     | 
| 
      
 139 
     | 
    
         
            +
                  self.class.openapi_types.each_pair do |key, type|
         
     | 
| 
      
 140 
     | 
    
         
            +
                    if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
         
     | 
| 
      
 141 
     | 
    
         
            +
                      send(:"#{key}=", nil)
         
     | 
| 
      
 142 
     | 
    
         
            +
                    elsif type =~ /\AArray<(.*)>/i
         
     | 
| 
      
 143 
     | 
    
         
            +
                      # check to ensure the input is an array given that the attribute
         
     | 
| 
      
 144 
     | 
    
         
            +
                      # is documented as an array but the input is not
         
     | 
| 
      
 145 
     | 
    
         
            +
                      if attributes[self.class.attribute_map[key]].is_a?(Array)
         
     | 
| 
      
 146 
     | 
    
         
            +
                        send(:"#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
         
     | 
| 
      
 147 
     | 
    
         
            +
                      end
         
     | 
| 
      
 148 
     | 
    
         
            +
                    elsif !attributes[self.class.attribute_map[key]].nil?
         
     | 
| 
      
 149 
     | 
    
         
            +
                      send(:"#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
         
     | 
| 
      
 150 
     | 
    
         
            +
                    end
         
     | 
| 
      
 151 
     | 
    
         
            +
                  end
         
     | 
| 
      
 152 
     | 
    
         
            +
             
     | 
| 
      
 153 
     | 
    
         
            +
                  self
         
     | 
| 
      
 154 
     | 
    
         
            +
                end
         
     | 
| 
      
 155 
     | 
    
         
            +
             
     | 
| 
      
 156 
     | 
    
         
            +
                # Deserializes the data based on type
         
     | 
| 
      
 157 
     | 
    
         
            +
                # @param string type Data type
         
     | 
| 
      
 158 
     | 
    
         
            +
                # @param string value Value to be deserialized
         
     | 
| 
      
 159 
     | 
    
         
            +
                # @return [Object] Deserialized data
         
     | 
| 
      
 160 
     | 
    
         
            +
                def _deserialize(type, value)
         
     | 
| 
      
 161 
     | 
    
         
            +
                  case type.to_sym
         
     | 
| 
      
 162 
     | 
    
         
            +
                  when :Time
         
     | 
| 
      
 163 
     | 
    
         
            +
                    Time.parse(value)
         
     | 
| 
      
 164 
     | 
    
         
            +
                  when :Date
         
     | 
| 
      
 165 
     | 
    
         
            +
                    Date.parse(value)
         
     | 
| 
      
 166 
     | 
    
         
            +
                  when :String
         
     | 
| 
      
 167 
     | 
    
         
            +
                    value.to_s
         
     | 
| 
      
 168 
     | 
    
         
            +
                  when :Integer
         
     | 
| 
      
 169 
     | 
    
         
            +
                    value.to_i
         
     | 
| 
      
 170 
     | 
    
         
            +
                  when :Float
         
     | 
| 
      
 171 
     | 
    
         
            +
                    value.to_f
         
     | 
| 
      
 172 
     | 
    
         
            +
                  when :Boolean
         
     | 
| 
      
 173 
     | 
    
         
            +
                    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
         
     | 
| 
      
 174 
     | 
    
         
            +
                      true
         
     | 
| 
      
 175 
     | 
    
         
            +
                    else
         
     | 
| 
      
 176 
     | 
    
         
            +
                      false
         
     | 
| 
      
 177 
     | 
    
         
            +
                    end
         
     | 
| 
      
 178 
     | 
    
         
            +
                  when :Object
         
     | 
| 
      
 179 
     | 
    
         
            +
                    # generic object (usually a Hash), return directly
         
     | 
| 
      
 180 
     | 
    
         
            +
                    value
         
     | 
| 
      
 181 
     | 
    
         
            +
                  when /\AArray<(?<inner_type>.+)>\z/
         
     | 
| 
      
 182 
     | 
    
         
            +
                    inner_type = Regexp.last_match[:inner_type]
         
     | 
| 
      
 183 
     | 
    
         
            +
                    value.map { |v| _deserialize(inner_type, v) }
         
     | 
| 
      
 184 
     | 
    
         
            +
                  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
         
     | 
| 
      
 185 
     | 
    
         
            +
                    k_type = Regexp.last_match[:k_type]
         
     | 
| 
      
 186 
     | 
    
         
            +
                    v_type = Regexp.last_match[:v_type]
         
     | 
| 
      
 187 
     | 
    
         
            +
                    {}.tap do |hash|
         
     | 
| 
      
 188 
     | 
    
         
            +
                      value.each do |k, v|
         
     | 
| 
      
 189 
     | 
    
         
            +
                        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
         
     | 
| 
      
 190 
     | 
    
         
            +
                      end
         
     | 
| 
      
 191 
     | 
    
         
            +
                    end
         
     | 
| 
      
 192 
     | 
    
         
            +
                  else # model
         
     | 
| 
      
 193 
     | 
    
         
            +
                    # models (e.g. Pet) or oneOf
         
     | 
| 
      
 194 
     | 
    
         
            +
                    klass = Freeclimb.const_get(type)
         
     | 
| 
      
 195 
     | 
    
         
            +
                    klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
         
     | 
| 
      
 196 
     | 
    
         
            +
                  end
         
     | 
| 
      
 197 
     | 
    
         
            +
                end
         
     | 
| 
      
 198 
     | 
    
         
            +
             
     | 
| 
      
 199 
     | 
    
         
            +
                # Returns the string representation of the object
         
     | 
| 
      
 200 
     | 
    
         
            +
                # @return [String] String presentation of the object
         
     | 
| 
      
 201 
     | 
    
         
            +
                def to_s
         
     | 
| 
      
 202 
     | 
    
         
            +
                  to_hash.to_s
         
     | 
| 
      
 203 
     | 
    
         
            +
                end
         
     | 
| 
      
 204 
     | 
    
         
            +
             
     | 
| 
      
 205 
     | 
    
         
            +
                # to_body is an alias to to_hash (backward compatibility)
         
     | 
| 
      
 206 
     | 
    
         
            +
                # @return [Hash] Returns the object in the form of hash
         
     | 
| 
      
 207 
     | 
    
         
            +
                def to_body
         
     | 
| 
      
 208 
     | 
    
         
            +
                  to_hash
         
     | 
| 
      
 209 
     | 
    
         
            +
                end
         
     | 
| 
      
 210 
     | 
    
         
            +
             
     | 
| 
      
 211 
     | 
    
         
            +
                # Returns the object in the form of hash
         
     | 
| 
      
 212 
     | 
    
         
            +
                # @return [Hash] Returns the object in the form of hash
         
     | 
| 
      
 213 
     | 
    
         
            +
                def to_hash
         
     | 
| 
      
 214 
     | 
    
         
            +
                  hash = {}
         
     | 
| 
      
 215 
     | 
    
         
            +
                  self.class.attribute_map.each_pair do |attr, param|
         
     | 
| 
      
 216 
     | 
    
         
            +
                    value = send(attr)
         
     | 
| 
      
 217 
     | 
    
         
            +
                    if value.nil?
         
     | 
| 
      
 218 
     | 
    
         
            +
                      is_nullable = self.class.openapi_nullable.include?(attr)
         
     | 
| 
      
 219 
     | 
    
         
            +
                      next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
         
     | 
| 
      
 220 
     | 
    
         
            +
                    end
         
     | 
| 
      
 221 
     | 
    
         
            +
             
     | 
| 
      
 222 
     | 
    
         
            +
                    hash[param] = _to_hash(value)
         
     | 
| 
      
 223 
     | 
    
         
            +
                  end
         
     | 
| 
      
 224 
     | 
    
         
            +
                  hash
         
     | 
| 
      
 225 
     | 
    
         
            +
                end
         
     | 
| 
      
 226 
     | 
    
         
            +
             
     | 
| 
      
 227 
     | 
    
         
            +
                # Outputs non-array value in the form of hash
         
     | 
| 
      
 228 
     | 
    
         
            +
                # For object, use to_hash. Otherwise, just return the value
         
     | 
| 
      
 229 
     | 
    
         
            +
                # @param [Object] value Any valid value
         
     | 
| 
      
 230 
     | 
    
         
            +
                # @return [Hash] Returns the value in the form of hash
         
     | 
| 
      
 231 
     | 
    
         
            +
                def _to_hash(value)
         
     | 
| 
      
 232 
     | 
    
         
            +
                  if value.is_a?(Array)
         
     | 
| 
      
 233 
     | 
    
         
            +
                    value.compact.map { |v| _to_hash(v) }
         
     | 
| 
      
 234 
     | 
    
         
            +
                  elsif value.is_a?(Hash)
         
     | 
| 
      
 235 
     | 
    
         
            +
                    {}.tap do |hash|
         
     | 
| 
      
 236 
     | 
    
         
            +
                      value.each { |k, v| hash[k] = _to_hash(v) }
         
     | 
| 
      
 237 
     | 
    
         
            +
                    end
         
     | 
| 
      
 238 
     | 
    
         
            +
                  elsif value.respond_to? :to_hash
         
     | 
| 
      
 239 
     | 
    
         
            +
                    value.to_hash
         
     | 
| 
      
 240 
     | 
    
         
            +
                  else
         
     | 
| 
      
 241 
     | 
    
         
            +
                    value
         
     | 
| 
      
 242 
     | 
    
         
            +
                  end
         
     | 
| 
      
 243 
     | 
    
         
            +
                end
         
     | 
| 
      
 244 
     | 
    
         
            +
              end
         
     | 
| 
      
 245 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,244 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # #FreeClimb API
         
     | 
| 
      
 2 
     | 
    
         
            +
            #
         
     | 
| 
      
 3 
     | 
    
         
            +
            # FreeClimb is a cloud-based application programming interface (API) that puts the power of the Vail platform in your hands. FreeClimb simplifies the process of creating applications that can use a full range of telephony features without requiring specialized or on-site telephony equipment. Using the FreeClimb REST API to write applications is easy! You have the option to use the language of your choice or hit the API directly. Your application can execute a command by issuing a RESTful request to the FreeClimb API. The base URL to send HTTP requests to the FreeClimb REST API is: /apiserver. FreeClimb authenticates and processes your request.
         
     | 
| 
      
 4 
     | 
    
         
            +
            #
         
     | 
| 
      
 5 
     | 
    
         
            +
            # The version of the OpenAPI document: 1.0.0
         
     | 
| 
      
 6 
     | 
    
         
            +
            # Contact: support@freeclimb.com
         
     | 
| 
      
 7 
     | 
    
         
            +
            # Generated by: https://openapi-generator.tech
         
     | 
| 
      
 8 
     | 
    
         
            +
            # OpenAPI Generator version: 7.9.0
         
     | 
| 
      
 9 
     | 
    
         
            +
            #
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            require "date"
         
     | 
| 
      
 12 
     | 
    
         
            +
            require "time"
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            module Freeclimb
         
     | 
| 
      
 15 
     | 
    
         
            +
              # Standard error structure returned by platform.
         
     | 
| 
      
 16 
     | 
    
         
            +
              class PlatformError
         
     | 
| 
      
 17 
     | 
    
         
            +
                attr_accessor :code
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
                attr_accessor :call
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
                attr_accessor :url
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
                attr_accessor :details
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
                # Attribute mapping from ruby-style variable name to JSON key.
         
     | 
| 
      
 26 
     | 
    
         
            +
                def self.attribute_map
         
     | 
| 
      
 27 
     | 
    
         
            +
                  {
         
     | 
| 
      
 28 
     | 
    
         
            +
                    code: :code,
         
     | 
| 
      
 29 
     | 
    
         
            +
                    call: :call,
         
     | 
| 
      
 30 
     | 
    
         
            +
                    url: :url,
         
     | 
| 
      
 31 
     | 
    
         
            +
                    details: :details
         
     | 
| 
      
 32 
     | 
    
         
            +
                  }
         
     | 
| 
      
 33 
     | 
    
         
            +
                end
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
                # Returns all the JSON keys this model knows about
         
     | 
| 
      
 36 
     | 
    
         
            +
                def self.acceptable_attributes
         
     | 
| 
      
 37 
     | 
    
         
            +
                  attribute_map.values
         
     | 
| 
      
 38 
     | 
    
         
            +
                end
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
                # Attribute type mapping.
         
     | 
| 
      
 41 
     | 
    
         
            +
                def self.openapi_types
         
     | 
| 
      
 42 
     | 
    
         
            +
                  {
         
     | 
| 
      
 43 
     | 
    
         
            +
                    code: :Integer,
         
     | 
| 
      
 44 
     | 
    
         
            +
                    call: :String,
         
     | 
| 
      
 45 
     | 
    
         
            +
                    url: :String,
         
     | 
| 
      
 46 
     | 
    
         
            +
                    details: :Object
         
     | 
| 
      
 47 
     | 
    
         
            +
                  }
         
     | 
| 
      
 48 
     | 
    
         
            +
                end
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
                # List of attributes with nullable: true
         
     | 
| 
      
 51 
     | 
    
         
            +
                def self.openapi_nullable
         
     | 
| 
      
 52 
     | 
    
         
            +
                  Set.new([])
         
     | 
| 
      
 53 
     | 
    
         
            +
                end
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
                # Initializes the object
         
     | 
| 
      
 56 
     | 
    
         
            +
                # @param [Hash] attributes Model attributes in the form of hash
         
     | 
| 
      
 57 
     | 
    
         
            +
                def initialize(attributes = {})
         
     | 
| 
      
 58 
     | 
    
         
            +
                  if !attributes.is_a?(Hash)
         
     | 
| 
      
 59 
     | 
    
         
            +
                    fail ArgumentError, "The input argument (attributes) must be a hash in `Freeclimb::PlatformError` initialize method"
         
     | 
| 
      
 60 
     | 
    
         
            +
                  end
         
     | 
| 
      
 61 
     | 
    
         
            +
             
     | 
| 
      
 62 
     | 
    
         
            +
                  # check to see if the attribute exists and convert string to symbol for hash key
         
     | 
| 
      
 63 
     | 
    
         
            +
                  attributes = attributes.each_with_object({}) { |(k, v), h|
         
     | 
| 
      
 64 
     | 
    
         
            +
                    if !self.class.attribute_map.key?(k.to_sym)
         
     | 
| 
      
 65 
     | 
    
         
            +
                      fail ArgumentError, "`#{k}` is not a valid attribute in `Freeclimb::PlatformError`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
         
     | 
| 
      
 66 
     | 
    
         
            +
                    end
         
     | 
| 
      
 67 
     | 
    
         
            +
                    h[k.to_sym] = v
         
     | 
| 
      
 68 
     | 
    
         
            +
                  }
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
                  if attributes.key?(:code)
         
     | 
| 
      
 71 
     | 
    
         
            +
                    self.code = attributes[:code]
         
     | 
| 
      
 72 
     | 
    
         
            +
                  end
         
     | 
| 
      
 73 
     | 
    
         
            +
             
     | 
| 
      
 74 
     | 
    
         
            +
                  if attributes.key?(:call)
         
     | 
| 
      
 75 
     | 
    
         
            +
                    self.call = attributes[:call]
         
     | 
| 
      
 76 
     | 
    
         
            +
                  end
         
     | 
| 
      
 77 
     | 
    
         
            +
             
     | 
| 
      
 78 
     | 
    
         
            +
                  if attributes.key?(:url)
         
     | 
| 
      
 79 
     | 
    
         
            +
                    self.url = attributes[:url]
         
     | 
| 
      
 80 
     | 
    
         
            +
                  end
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
                  if attributes.key?(:details)
         
     | 
| 
      
 83 
     | 
    
         
            +
                    self.details = attributes[:details]
         
     | 
| 
      
 84 
     | 
    
         
            +
                  end
         
     | 
| 
      
 85 
     | 
    
         
            +
                end
         
     | 
| 
      
 86 
     | 
    
         
            +
             
     | 
| 
      
 87 
     | 
    
         
            +
                # Show invalid properties with the reasons. Usually used together with valid?
         
     | 
| 
      
 88 
     | 
    
         
            +
                # @return Array for valid properties with the reasons
         
     | 
| 
      
 89 
     | 
    
         
            +
                def list_invalid_properties
         
     | 
| 
      
 90 
     | 
    
         
            +
                  []
         
     | 
| 
      
 91 
     | 
    
         
            +
                end
         
     | 
| 
      
 92 
     | 
    
         
            +
             
     | 
| 
      
 93 
     | 
    
         
            +
                # Check to see if the all the properties in the model are valid
         
     | 
| 
      
 94 
     | 
    
         
            +
                # @return true if the model is valid
         
     | 
| 
      
 95 
     | 
    
         
            +
                def valid?
         
     | 
| 
      
 96 
     | 
    
         
            +
                  if @code.nil?
         
     | 
| 
      
 97 
     | 
    
         
            +
                    false
         
     | 
| 
      
 98 
     | 
    
         
            +
                  else
         
     | 
| 
      
 99 
     | 
    
         
            +
                    list_invalid_properties.length == 0
         
     | 
| 
      
 100 
     | 
    
         
            +
                  end
         
     | 
| 
      
 101 
     | 
    
         
            +
                end
         
     | 
| 
      
 102 
     | 
    
         
            +
             
     | 
| 
      
 103 
     | 
    
         
            +
                # Checks equality by comparing each attribute.
         
     | 
| 
      
 104 
     | 
    
         
            +
                # @param [Object] Object to be compared
         
     | 
| 
      
 105 
     | 
    
         
            +
                def ==(other)
         
     | 
| 
      
 106 
     | 
    
         
            +
                  return true if equal?(other)
         
     | 
| 
      
 107 
     | 
    
         
            +
                  self.class == other.class &&
         
     | 
| 
      
 108 
     | 
    
         
            +
                    code == other.code &&
         
     | 
| 
      
 109 
     | 
    
         
            +
                    call == other.call &&
         
     | 
| 
      
 110 
     | 
    
         
            +
                    url == other.url &&
         
     | 
| 
      
 111 
     | 
    
         
            +
                    details == other.details
         
     | 
| 
      
 112 
     | 
    
         
            +
                end
         
     | 
| 
      
 113 
     | 
    
         
            +
             
     | 
| 
      
 114 
     | 
    
         
            +
                # @see the `==` method
         
     | 
| 
      
 115 
     | 
    
         
            +
                # @param [Object] Object to be compared
         
     | 
| 
      
 116 
     | 
    
         
            +
                def eql?(other)
         
     | 
| 
      
 117 
     | 
    
         
            +
                  self == other
         
     | 
| 
      
 118 
     | 
    
         
            +
                end
         
     | 
| 
      
 119 
     | 
    
         
            +
             
     | 
| 
      
 120 
     | 
    
         
            +
                # Calculates hash code according to all attributes.
         
     | 
| 
      
 121 
     | 
    
         
            +
                # @return [Integer] Hash code
         
     | 
| 
      
 122 
     | 
    
         
            +
                def hash
         
     | 
| 
      
 123 
     | 
    
         
            +
                  [code, call, url, details].hash
         
     | 
| 
      
 124 
     | 
    
         
            +
                end
         
     | 
| 
      
 125 
     | 
    
         
            +
             
     | 
| 
      
 126 
     | 
    
         
            +
                # Builds the object from hash
         
     | 
| 
      
 127 
     | 
    
         
            +
                # @param [Hash] attributes Model attributes in the form of hash
         
     | 
| 
      
 128 
     | 
    
         
            +
                # @return [Object] Returns the model itself
         
     | 
| 
      
 129 
     | 
    
         
            +
                def self.build_from_hash(attributes)
         
     | 
| 
      
 130 
     | 
    
         
            +
                  new.build_from_hash(attributes)
         
     | 
| 
      
 131 
     | 
    
         
            +
                end
         
     | 
| 
      
 132 
     | 
    
         
            +
             
     | 
| 
      
 133 
     | 
    
         
            +
                # Builds the object from hash
         
     | 
| 
      
 134 
     | 
    
         
            +
                # @param [Hash] attributes Model attributes in the form of hash
         
     | 
| 
      
 135 
     | 
    
         
            +
                # @return [Object] Returns the model itself
         
     | 
| 
      
 136 
     | 
    
         
            +
                def build_from_hash(attributes)
         
     | 
| 
      
 137 
     | 
    
         
            +
                  return nil unless attributes.is_a?(Hash)
         
     | 
| 
      
 138 
     | 
    
         
            +
                  self.class.openapi_types.each_pair do |key, type|
         
     | 
| 
      
 139 
     | 
    
         
            +
                    if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
         
     | 
| 
      
 140 
     | 
    
         
            +
                      send(:"#{key}=", nil)
         
     | 
| 
      
 141 
     | 
    
         
            +
                    elsif type =~ /\AArray<(.*)>/i
         
     | 
| 
      
 142 
     | 
    
         
            +
                      # check to ensure the input is an array given that the attribute
         
     | 
| 
      
 143 
     | 
    
         
            +
                      # is documented as an array but the input is not
         
     | 
| 
      
 144 
     | 
    
         
            +
                      if attributes[self.class.attribute_map[key]].is_a?(Array)
         
     | 
| 
      
 145 
     | 
    
         
            +
                        send(:"#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
         
     | 
| 
      
 146 
     | 
    
         
            +
                      end
         
     | 
| 
      
 147 
     | 
    
         
            +
                    elsif !attributes[self.class.attribute_map[key]].nil?
         
     | 
| 
      
 148 
     | 
    
         
            +
                      send(:"#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
         
     | 
| 
      
 149 
     | 
    
         
            +
                    end
         
     | 
| 
      
 150 
     | 
    
         
            +
                  end
         
     | 
| 
      
 151 
     | 
    
         
            +
             
     | 
| 
      
 152 
     | 
    
         
            +
                  self
         
     | 
| 
      
 153 
     | 
    
         
            +
                end
         
     | 
| 
      
 154 
     | 
    
         
            +
             
     | 
| 
      
 155 
     | 
    
         
            +
                # Deserializes the data based on type
         
     | 
| 
      
 156 
     | 
    
         
            +
                # @param string type Data type
         
     | 
| 
      
 157 
     | 
    
         
            +
                # @param string value Value to be deserialized
         
     | 
| 
      
 158 
     | 
    
         
            +
                # @return [Object] Deserialized data
         
     | 
| 
      
 159 
     | 
    
         
            +
                def _deserialize(type, value)
         
     | 
| 
      
 160 
     | 
    
         
            +
                  case type.to_sym
         
     | 
| 
      
 161 
     | 
    
         
            +
                  when :Time
         
     | 
| 
      
 162 
     | 
    
         
            +
                    Time.parse(value)
         
     | 
| 
      
 163 
     | 
    
         
            +
                  when :Date
         
     | 
| 
      
 164 
     | 
    
         
            +
                    Date.parse(value)
         
     | 
| 
      
 165 
     | 
    
         
            +
                  when :String
         
     | 
| 
      
 166 
     | 
    
         
            +
                    value.to_s
         
     | 
| 
      
 167 
     | 
    
         
            +
                  when :Integer
         
     | 
| 
      
 168 
     | 
    
         
            +
                    value.to_i
         
     | 
| 
      
 169 
     | 
    
         
            +
                  when :Float
         
     | 
| 
      
 170 
     | 
    
         
            +
                    value.to_f
         
     | 
| 
      
 171 
     | 
    
         
            +
                  when :Boolean
         
     | 
| 
      
 172 
     | 
    
         
            +
                    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
         
     | 
| 
      
 173 
     | 
    
         
            +
                      true
         
     | 
| 
      
 174 
     | 
    
         
            +
                    else
         
     | 
| 
      
 175 
     | 
    
         
            +
                      false
         
     | 
| 
      
 176 
     | 
    
         
            +
                    end
         
     | 
| 
      
 177 
     | 
    
         
            +
                  when :Object
         
     | 
| 
      
 178 
     | 
    
         
            +
                    # generic object (usually a Hash), return directly
         
     | 
| 
      
 179 
     | 
    
         
            +
                    value
         
     | 
| 
      
 180 
     | 
    
         
            +
                  when /\AArray<(?<inner_type>.+)>\z/
         
     | 
| 
      
 181 
     | 
    
         
            +
                    inner_type = Regexp.last_match[:inner_type]
         
     | 
| 
      
 182 
     | 
    
         
            +
                    value.map { |v| _deserialize(inner_type, v) }
         
     | 
| 
      
 183 
     | 
    
         
            +
                  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
         
     | 
| 
      
 184 
     | 
    
         
            +
                    k_type = Regexp.last_match[:k_type]
         
     | 
| 
      
 185 
     | 
    
         
            +
                    v_type = Regexp.last_match[:v_type]
         
     | 
| 
      
 186 
     | 
    
         
            +
                    {}.tap do |hash|
         
     | 
| 
      
 187 
     | 
    
         
            +
                      value.each do |k, v|
         
     | 
| 
      
 188 
     | 
    
         
            +
                        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
         
     | 
| 
      
 189 
     | 
    
         
            +
                      end
         
     | 
| 
      
 190 
     | 
    
         
            +
                    end
         
     | 
| 
      
 191 
     | 
    
         
            +
                  else # model
         
     | 
| 
      
 192 
     | 
    
         
            +
                    # models (e.g. Pet) or oneOf
         
     | 
| 
      
 193 
     | 
    
         
            +
                    klass = Freeclimb.const_get(type)
         
     | 
| 
      
 194 
     | 
    
         
            +
                    klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
         
     | 
| 
      
 195 
     | 
    
         
            +
                  end
         
     | 
| 
      
 196 
     | 
    
         
            +
                end
         
     | 
| 
      
 197 
     | 
    
         
            +
             
     | 
| 
      
 198 
     | 
    
         
            +
                # Returns the string representation of the object
         
     | 
| 
      
 199 
     | 
    
         
            +
                # @return [String] String presentation of the object
         
     | 
| 
      
 200 
     | 
    
         
            +
                def to_s
         
     | 
| 
      
 201 
     | 
    
         
            +
                  to_hash.to_s
         
     | 
| 
      
 202 
     | 
    
         
            +
                end
         
     | 
| 
      
 203 
     | 
    
         
            +
             
     | 
| 
      
 204 
     | 
    
         
            +
                # to_body is an alias to to_hash (backward compatibility)
         
     | 
| 
      
 205 
     | 
    
         
            +
                # @return [Hash] Returns the object in the form of hash
         
     | 
| 
      
 206 
     | 
    
         
            +
                def to_body
         
     | 
| 
      
 207 
     | 
    
         
            +
                  to_hash
         
     | 
| 
      
 208 
     | 
    
         
            +
                end
         
     | 
| 
      
 209 
     | 
    
         
            +
             
     | 
| 
      
 210 
     | 
    
         
            +
                # Returns the object in the form of hash
         
     | 
| 
      
 211 
     | 
    
         
            +
                # @return [Hash] Returns the object in the form of hash
         
     | 
| 
      
 212 
     | 
    
         
            +
                def to_hash
         
     | 
| 
      
 213 
     | 
    
         
            +
                  hash = {}
         
     | 
| 
      
 214 
     | 
    
         
            +
                  self.class.attribute_map.each_pair do |attr, param|
         
     | 
| 
      
 215 
     | 
    
         
            +
                    value = send(attr)
         
     | 
| 
      
 216 
     | 
    
         
            +
                    if value.nil?
         
     | 
| 
      
 217 
     | 
    
         
            +
                      is_nullable = self.class.openapi_nullable.include?(attr)
         
     | 
| 
      
 218 
     | 
    
         
            +
                      next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
         
     | 
| 
      
 219 
     | 
    
         
            +
                    end
         
     | 
| 
      
 220 
     | 
    
         
            +
             
     | 
| 
      
 221 
     | 
    
         
            +
                    hash[param] = _to_hash(value)
         
     | 
| 
      
 222 
     | 
    
         
            +
                  end
         
     | 
| 
      
 223 
     | 
    
         
            +
                  hash
         
     | 
| 
      
 224 
     | 
    
         
            +
                end
         
     | 
| 
      
 225 
     | 
    
         
            +
             
     | 
| 
      
 226 
     | 
    
         
            +
                # Outputs non-array value in the form of hash
         
     | 
| 
      
 227 
     | 
    
         
            +
                # For object, use to_hash. Otherwise, just return the value
         
     | 
| 
      
 228 
     | 
    
         
            +
                # @param [Object] value Any valid value
         
     | 
| 
      
 229 
     | 
    
         
            +
                # @return [Hash] Returns the value in the form of hash
         
     | 
| 
      
 230 
     | 
    
         
            +
                def _to_hash(value)
         
     | 
| 
      
 231 
     | 
    
         
            +
                  if value.is_a?(Array)
         
     | 
| 
      
 232 
     | 
    
         
            +
                    value.compact.map { |v| _to_hash(v) }
         
     | 
| 
      
 233 
     | 
    
         
            +
                  elsif value.is_a?(Hash)
         
     | 
| 
      
 234 
     | 
    
         
            +
                    {}.tap do |hash|
         
     | 
| 
      
 235 
     | 
    
         
            +
                      value.each { |k, v| hash[k] = _to_hash(v) }
         
     | 
| 
      
 236 
     | 
    
         
            +
                    end
         
     | 
| 
      
 237 
     | 
    
         
            +
                  elsif value.respond_to? :to_hash
         
     | 
| 
      
 238 
     | 
    
         
            +
                    value.to_hash
         
     | 
| 
      
 239 
     | 
    
         
            +
                  else
         
     | 
| 
      
 240 
     | 
    
         
            +
                    value
         
     | 
| 
      
 241 
     | 
    
         
            +
                  end
         
     | 
| 
      
 242 
     | 
    
         
            +
                end
         
     | 
| 
      
 243 
     | 
    
         
            +
              end
         
     | 
| 
      
 244 
     | 
    
         
            +
            end
         
     |