freeclimb 1.0.3 → 2.1.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 +89 -0
 - data/Gemfile.lock +1 -1
 - data/README.md +11 -5
 - data/docs/AccountRequest.md +1 -3
 - data/docs/ApplicationRequest.md +1 -3
 - data/docs/BuyIncomingNumberRequest.md +1 -3
 - data/docs/CreateConferenceRequest.md +1 -3
 - data/docs/DefaultApi.md +22 -38
 - data/docs/FilterLogsRequest.md +1 -3
 - data/docs/GetDigits.md +3 -1
 - data/docs/GetDigitsAllOf.md +3 -1
 - data/docs/GetSpeech.md +2 -2
 - data/docs/GetSpeechAllOf.md +2 -2
 - data/docs/Hangup.md +17 -0
 - data/docs/HangupAllOf.md +17 -0
 - data/docs/IncomingNumberRequest.md +1 -3
 - data/docs/MakeCallRequest.md +3 -3
 - data/docs/MessageRequest.md +0 -2
 - data/docs/MessageRequestAllOf.md +0 -2
 - data/docs/MessageResult.md +1 -1
 - data/docs/MessageResultAllOf.md +1 -1
 - data/docs/OutDial.md +3 -1
 - data/docs/OutDialAllOf.md +3 -1
 - data/docs/Play.md +3 -1
 - data/docs/PlayAllOf.md +3 -1
 - data/docs/QueueRequest.md +1 -3
 - data/docs/Redirect.md +1 -1
 - data/docs/RedirectAllOf.md +1 -1
 - data/docs/Reject.md +17 -0
 - data/docs/RejectAllOf.md +17 -0
 - data/docs/Say.md +2 -2
 - data/docs/SayAllOf.md +2 -2
 - data/docs/SendDigits.md +3 -1
 - data/docs/SendDigitsAllOf.md +3 -1
 - data/docs/UpdateCallRequest.md +1 -3
 - data/docs/UpdateConferenceParticipantRequest.md +1 -3
 - data/docs/UpdateConferenceRequest.md +1 -3
 - data/freeclimb-2.0.3.gem +0 -0
 - data/lib/freeclimb.rb +4 -1
 - data/lib/freeclimb/api/default_api.rb +42 -34
 - data/lib/freeclimb/api_client.rb +1 -1
 - data/lib/freeclimb/models/account_request.rb +4 -14
 - data/lib/freeclimb/models/application_request.rb +4 -14
 - data/lib/freeclimb/models/buy_incoming_number_request.rb +4 -14
 - data/lib/freeclimb/models/create_conference_request.rb +4 -14
 - data/lib/freeclimb/models/filter_logs_request.rb +4 -14
 - data/lib/freeclimb/models/get_digits.rb +14 -4
 - data/lib/freeclimb/models/get_digits_all_of.rb +14 -4
 - data/lib/freeclimb/models/get_speech.rb +8 -8
 - data/lib/freeclimb/models/get_speech_all_of.rb +8 -8
 - data/lib/freeclimb/models/hangup.rb +220 -0
 - data/lib/freeclimb/models/{dequeue_member_request.rb → hangup_all_of.rb} +11 -11
 - data/lib/freeclimb/models/incoming_number_request.rb +4 -14
 - data/lib/freeclimb/models/make_call_request.rb +14 -14
 - data/lib/freeclimb/models/message_request.rb +1 -11
 - data/lib/freeclimb/models/message_request_all_of.rb +1 -11
 - data/lib/freeclimb/models/message_result.rb +3 -3
 - data/lib/freeclimb/models/message_result_all_of.rb +3 -3
 - data/lib/freeclimb/models/out_dial.rb +14 -4
 - data/lib/freeclimb/models/out_dial_all_of.rb +14 -4
 - data/lib/freeclimb/models/play.rb +14 -4
 - data/lib/freeclimb/models/play_all_of.rb +14 -4
 - data/lib/freeclimb/models/queue_request.rb +4 -14
 - data/lib/freeclimb/models/redirect.rb +7 -2
 - data/lib/freeclimb/models/redirect_all_of.rb +6 -1
 - data/lib/freeclimb/models/reject.rb +220 -0
 - data/lib/freeclimb/models/reject_all_of.rb +207 -0
 - data/lib/freeclimb/models/say.rb +8 -8
 - data/lib/freeclimb/models/say_all_of.rb +8 -8
 - data/lib/freeclimb/models/send_digits.rb +14 -4
 - data/lib/freeclimb/models/send_digits_all_of.rb +14 -4
 - data/lib/freeclimb/models/update_call_request.rb +4 -14
 - data/lib/freeclimb/models/update_conference_participant_request.rb +4 -14
 - data/lib/freeclimb/models/update_conference_request.rb +4 -14
 - data/lib/freeclimb/version.rb +1 -1
 - data/spec/api/default_api_spec.rb +9 -24
 - data/spec/models/hangup_spec.rb +41 -0
 - data/spec/models/reject_spec.rb +41 -0
 - metadata +16 -6
 - data/docs/DequeueMemberRequest.md +0 -17
 - data/spec/models/dequeue_member_request_spec.rb +0 -34
 
| 
         @@ -24,12 +24,16 @@ module Freeclimb 
     | 
|
| 
       24 
24 
     | 
    
         
             
                # ID of the Conference the audio should be rendered to. If this is not specified, the audio is by default rendered to the caller associated with the call leg that corresponds to the current PerCL execution context. The call leg associated with this command must be in the specified Conference or the command will return an error.
         
     | 
| 
       25 
25 
     | 
    
         
             
                attr_accessor :conference_id
         
     | 
| 
       26 
26 
     | 
    
         | 
| 
      
 27 
     | 
    
         
            +
                # Parameter `privacyMode` will not log the `text` as required by PCI compliance.
         
     | 
| 
      
 28 
     | 
    
         
            +
                attr_accessor :privacy_mode
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
       27 
30 
     | 
    
         
             
                # Attribute mapping from ruby-style variable name to JSON key.
         
     | 
| 
       28 
31 
     | 
    
         
             
                def self.attribute_map
         
     | 
| 
       29 
32 
     | 
    
         
             
                  {
         
     | 
| 
       30 
33 
     | 
    
         
             
                    :'file' => :'file',
         
     | 
| 
       31 
34 
     | 
    
         
             
                    :'loop' => :'loop',
         
     | 
| 
       32 
     | 
    
         
            -
                    :'conference_id' => :'conferenceId'
         
     | 
| 
      
 35 
     | 
    
         
            +
                    :'conference_id' => :'conferenceId',
         
     | 
| 
      
 36 
     | 
    
         
            +
                    :'privacy_mode' => :'privacyMode'
         
     | 
| 
       33 
37 
     | 
    
         
             
                  }
         
     | 
| 
       34 
38 
     | 
    
         
             
                end
         
     | 
| 
       35 
39 
     | 
    
         | 
| 
         @@ -38,7 +42,8 @@ module Freeclimb 
     | 
|
| 
       38 
42 
     | 
    
         
             
                  {
         
     | 
| 
       39 
43 
     | 
    
         
             
                    :'file' => :'String',
         
     | 
| 
       40 
44 
     | 
    
         
             
                    :'loop' => :'Integer',
         
     | 
| 
       41 
     | 
    
         
            -
                    :'conference_id' => :'String'
         
     | 
| 
      
 45 
     | 
    
         
            +
                    :'conference_id' => :'String',
         
     | 
| 
      
 46 
     | 
    
         
            +
                    :'privacy_mode' => :'Boolean'
         
     | 
| 
       42 
47 
     | 
    
         
             
                  }
         
     | 
| 
       43 
48 
     | 
    
         
             
                end
         
     | 
| 
       44 
49 
     | 
    
         | 
| 
         @@ -85,6 +90,10 @@ module Freeclimb 
     | 
|
| 
       85 
90 
     | 
    
         
             
                  if attributes.key?(:'conference_id')
         
     | 
| 
       86 
91 
     | 
    
         
             
                    self.conference_id = attributes[:'conference_id']
         
     | 
| 
       87 
92 
     | 
    
         
             
                  end
         
     | 
| 
      
 93 
     | 
    
         
            +
             
     | 
| 
      
 94 
     | 
    
         
            +
                  if attributes.key?(:'privacy_mode')
         
     | 
| 
      
 95 
     | 
    
         
            +
                    self.privacy_mode = attributes[:'privacy_mode']
         
     | 
| 
      
 96 
     | 
    
         
            +
                  end
         
     | 
| 
       88 
97 
     | 
    
         
             
                end
         
     | 
| 
       89 
98 
     | 
    
         | 
| 
       90 
99 
     | 
    
         
             
                # Show invalid properties with the reasons. Usually used together with valid?
         
     | 
| 
         @@ -112,7 +121,8 @@ module Freeclimb 
     | 
|
| 
       112 
121 
     | 
    
         
             
                  self.class == o.class &&
         
     | 
| 
       113 
122 
     | 
    
         
             
                      file == o.file &&
         
     | 
| 
       114 
123 
     | 
    
         
             
                      loop == o.loop &&
         
     | 
| 
       115 
     | 
    
         
            -
                      conference_id == o.conference_id && 
     | 
| 
      
 124 
     | 
    
         
            +
                      conference_id == o.conference_id &&
         
     | 
| 
      
 125 
     | 
    
         
            +
                      privacy_mode == o.privacy_mode && super(o)
         
     | 
| 
       116 
126 
     | 
    
         
             
                end
         
     | 
| 
       117 
127 
     | 
    
         | 
| 
       118 
128 
     | 
    
         
             
                # @see the `==` method
         
     | 
| 
         @@ -124,7 +134,7 @@ module Freeclimb 
     | 
|
| 
       124 
134 
     | 
    
         
             
                # Calculates hash code according to all attributes.
         
     | 
| 
       125 
135 
     | 
    
         
             
                # @return [Integer] Hash code
         
     | 
| 
       126 
136 
     | 
    
         
             
                def hash
         
     | 
| 
       127 
     | 
    
         
            -
                  [file, loop, conference_id].hash
         
     | 
| 
      
 137 
     | 
    
         
            +
                  [file, loop, conference_id, privacy_mode].hash
         
     | 
| 
       128 
138 
     | 
    
         
             
                end
         
     | 
| 
       129 
139 
     | 
    
         | 
| 
       130 
140 
     | 
    
         
             
                # Builds the object from hash
         
     | 
| 
         @@ -23,12 +23,16 @@ module Freeclimb 
     | 
|
| 
       23 
23 
     | 
    
         
             
                # ID of the Conference the audio should be rendered to. If this is not specified, the audio is by default rendered to the caller associated with the call leg that corresponds to the current PerCL execution context. The call leg associated with this command must be in the specified Conference or the command will return an error.
         
     | 
| 
       24 
24 
     | 
    
         
             
                attr_accessor :conference_id
         
     | 
| 
       25 
25 
     | 
    
         | 
| 
      
 26 
     | 
    
         
            +
                # Parameter `privacyMode` will not log the `text` as required by PCI compliance.
         
     | 
| 
      
 27 
     | 
    
         
            +
                attr_accessor :privacy_mode
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
       26 
29 
     | 
    
         
             
                # Attribute mapping from ruby-style variable name to JSON key.
         
     | 
| 
       27 
30 
     | 
    
         
             
                def self.attribute_map
         
     | 
| 
       28 
31 
     | 
    
         
             
                  {
         
     | 
| 
       29 
32 
     | 
    
         
             
                    :'file' => :'file',
         
     | 
| 
       30 
33 
     | 
    
         
             
                    :'loop' => :'loop',
         
     | 
| 
       31 
     | 
    
         
            -
                    :'conference_id' => :'conferenceId'
         
     | 
| 
      
 34 
     | 
    
         
            +
                    :'conference_id' => :'conferenceId',
         
     | 
| 
      
 35 
     | 
    
         
            +
                    :'privacy_mode' => :'privacyMode'
         
     | 
| 
       32 
36 
     | 
    
         
             
                  }
         
     | 
| 
       33 
37 
     | 
    
         
             
                end
         
     | 
| 
       34 
38 
     | 
    
         | 
| 
         @@ -37,7 +41,8 @@ module Freeclimb 
     | 
|
| 
       37 
41 
     | 
    
         
             
                  {
         
     | 
| 
       38 
42 
     | 
    
         
             
                    :'file' => :'String',
         
     | 
| 
       39 
43 
     | 
    
         
             
                    :'loop' => :'Integer',
         
     | 
| 
       40 
     | 
    
         
            -
                    :'conference_id' => :'String'
         
     | 
| 
      
 44 
     | 
    
         
            +
                    :'conference_id' => :'String',
         
     | 
| 
      
 45 
     | 
    
         
            +
                    :'privacy_mode' => :'Boolean'
         
     | 
| 
       41 
46 
     | 
    
         
             
                  }
         
     | 
| 
       42 
47 
     | 
    
         
             
                end
         
     | 
| 
       43 
48 
     | 
    
         | 
| 
         @@ -73,6 +78,10 @@ module Freeclimb 
     | 
|
| 
       73 
78 
     | 
    
         
             
                  if attributes.key?(:'conference_id')
         
     | 
| 
       74 
79 
     | 
    
         
             
                    self.conference_id = attributes[:'conference_id']
         
     | 
| 
       75 
80 
     | 
    
         
             
                  end
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
                  if attributes.key?(:'privacy_mode')
         
     | 
| 
      
 83 
     | 
    
         
            +
                    self.privacy_mode = attributes[:'privacy_mode']
         
     | 
| 
      
 84 
     | 
    
         
            +
                  end
         
     | 
| 
       76 
85 
     | 
    
         
             
                end
         
     | 
| 
       77 
86 
     | 
    
         | 
| 
       78 
87 
     | 
    
         
             
                # Show invalid properties with the reasons. Usually used together with valid?
         
     | 
| 
         @@ -100,7 +109,8 @@ module Freeclimb 
     | 
|
| 
       100 
109 
     | 
    
         
             
                  self.class == o.class &&
         
     | 
| 
       101 
110 
     | 
    
         
             
                      file == o.file &&
         
     | 
| 
       102 
111 
     | 
    
         
             
                      loop == o.loop &&
         
     | 
| 
       103 
     | 
    
         
            -
                      conference_id == o.conference_id
         
     | 
| 
      
 112 
     | 
    
         
            +
                      conference_id == o.conference_id &&
         
     | 
| 
      
 113 
     | 
    
         
            +
                      privacy_mode == o.privacy_mode
         
     | 
| 
       104 
114 
     | 
    
         
             
                end
         
     | 
| 
       105 
115 
     | 
    
         | 
| 
       106 
116 
     | 
    
         
             
                # @see the `==` method
         
     | 
| 
         @@ -112,7 +122,7 @@ module Freeclimb 
     | 
|
| 
       112 
122 
     | 
    
         
             
                # Calculates hash code according to all attributes.
         
     | 
| 
       113 
123 
     | 
    
         
             
                # @return [Integer] Hash code
         
     | 
| 
       114 
124 
     | 
    
         
             
                def hash
         
     | 
| 
       115 
     | 
    
         
            -
                  [file, loop, conference_id].hash
         
     | 
| 
      
 125 
     | 
    
         
            +
                  [file, loop, conference_id, privacy_mode].hash
         
     | 
| 
       116 
126 
     | 
    
         
             
                end
         
     | 
| 
       117 
127 
     | 
    
         | 
| 
       118 
128 
     | 
    
         
             
                # Builds the object from hash
         
     | 
| 
         @@ -20,15 +20,11 @@ module Freeclimb 
     | 
|
| 
       20 
20 
     | 
    
         
             
                # Maximum number of calls this queue can hold. Default is 100. Maximum is 1000. **Note:** Reducing the maxSize of a Queue causes the Queue to reject incoming requests until it shrinks below the new value of maxSize.
         
     | 
| 
       21 
21 
     | 
    
         
             
                attr_accessor :max_size
         
     | 
| 
       22 
22 
     | 
    
         | 
| 
       23 
     | 
    
         
            -
                # RequestId for this request, starting with prefix *RQ* followed by 40 hexadecimal characters. FreeClimb logs generated while processing this request include this requestId. If this parameter is not provided, FreeClimb generates a requestId and returns it as a header in the response (e.g., X-Pulse-Request-Id: <requestId>).
         
     | 
| 
       24 
     | 
    
         
            -
                attr_accessor :request_id
         
     | 
| 
       25 
     | 
    
         
            -
             
     | 
| 
       26 
23 
     | 
    
         
             
                # Attribute mapping from ruby-style variable name to JSON key.
         
     | 
| 
       27 
24 
     | 
    
         
             
                def self.attribute_map
         
     | 
| 
       28 
25 
     | 
    
         
             
                  {
         
     | 
| 
       29 
26 
     | 
    
         
             
                    :'_alias' => :'alias',
         
     | 
| 
       30 
     | 
    
         
            -
                    :'max_size' => :'maxSize' 
     | 
| 
       31 
     | 
    
         
            -
                    :'request_id' => :'requestId'
         
     | 
| 
      
 27 
     | 
    
         
            +
                    :'max_size' => :'maxSize'
         
     | 
| 
       32 
28 
     | 
    
         
             
                  }
         
     | 
| 
       33 
29 
     | 
    
         
             
                end
         
     | 
| 
       34 
30 
     | 
    
         | 
| 
         @@ -36,8 +32,7 @@ module Freeclimb 
     | 
|
| 
       36 
32 
     | 
    
         
             
                def self.openapi_types
         
     | 
| 
       37 
33 
     | 
    
         
             
                  {
         
     | 
| 
       38 
34 
     | 
    
         
             
                    :'_alias' => :'String',
         
     | 
| 
       39 
     | 
    
         
            -
                    :'max_size' => :'Integer' 
     | 
| 
       40 
     | 
    
         
            -
                    :'request_id' => :'String'
         
     | 
| 
      
 35 
     | 
    
         
            +
                    :'max_size' => :'Integer'
         
     | 
| 
       41 
36 
     | 
    
         
             
                  }
         
     | 
| 
       42 
37 
     | 
    
         
             
                end
         
     | 
| 
       43 
38 
     | 
    
         | 
| 
         @@ -69,10 +64,6 @@ module Freeclimb 
     | 
|
| 
       69 
64 
     | 
    
         
             
                  if attributes.key?(:'max_size')
         
     | 
| 
       70 
65 
     | 
    
         
             
                    self.max_size = attributes[:'max_size']
         
     | 
| 
       71 
66 
     | 
    
         
             
                  end
         
     | 
| 
       72 
     | 
    
         
            -
             
     | 
| 
       73 
     | 
    
         
            -
                  if attributes.key?(:'request_id')
         
     | 
| 
       74 
     | 
    
         
            -
                    self.request_id = attributes[:'request_id']
         
     | 
| 
       75 
     | 
    
         
            -
                  end
         
     | 
| 
       76 
67 
     | 
    
         
             
                end
         
     | 
| 
       77 
68 
     | 
    
         | 
| 
       78 
69 
     | 
    
         
             
                # Show invalid properties with the reasons. Usually used together with valid?
         
     | 
| 
         @@ -94,8 +85,7 @@ module Freeclimb 
     | 
|
| 
       94 
85 
     | 
    
         
             
                  return true if self.equal?(o)
         
     | 
| 
       95 
86 
     | 
    
         
             
                  self.class == o.class &&
         
     | 
| 
       96 
87 
     | 
    
         
             
                      _alias == o._alias &&
         
     | 
| 
       97 
     | 
    
         
            -
                      max_size == o.max_size 
     | 
| 
       98 
     | 
    
         
            -
                      request_id == o.request_id
         
     | 
| 
      
 88 
     | 
    
         
            +
                      max_size == o.max_size
         
     | 
| 
       99 
89 
     | 
    
         
             
                end
         
     | 
| 
       100 
90 
     | 
    
         | 
| 
       101 
91 
     | 
    
         
             
                # @see the `==` method
         
     | 
| 
         @@ -107,7 +97,7 @@ module Freeclimb 
     | 
|
| 
       107 
97 
     | 
    
         
             
                # Calculates hash code according to all attributes.
         
     | 
| 
       108 
98 
     | 
    
         
             
                # @return [Integer] Hash code
         
     | 
| 
       109 
99 
     | 
    
         
             
                def hash
         
     | 
| 
       110 
     | 
    
         
            -
                  [_alias, max_size 
     | 
| 
      
 100 
     | 
    
         
            +
                  [_alias, max_size].hash
         
     | 
| 
       111 
101 
     | 
    
         
             
                end
         
     | 
| 
       112 
102 
     | 
    
         | 
| 
       113 
103 
     | 
    
         
             
                # Builds the object from hash
         
     | 
| 
         @@ -13,9 +13,9 @@ OpenAPI Generator version: 4.3.0-SNAPSHOT 
     | 
|
| 
       13 
13 
     | 
    
         
             
            require 'date'
         
     | 
| 
       14 
14 
     | 
    
         | 
| 
       15 
15 
     | 
    
         
             
            module Freeclimb
         
     | 
| 
       16 
     | 
    
         
            -
              # The ` 
     | 
| 
      
 16 
     | 
    
         
            +
              # The `Redirect` command transfers control of a Call to the PerCL at a different URL. `Redirect` is a terminal command, so any actions following it are never executed. The maximum number of redirections allowed during the life time of a Call is 256. This is intended to prevent a Call from possibly looping infinitely due to errors in PerCL being generated.
         
     | 
| 
       17 
17 
     | 
    
         
             
              class Redirect < PerclCommand
         
     | 
| 
       18 
     | 
    
         
            -
                #  
     | 
| 
      
 18 
     | 
    
         
            +
                # URL to request a new PerCL script to continue with the current Call's processing. When `Redirect` invokes the `actionUrl`, an `inbound` Webhook is sent. This request therefore looks identical to the initial request (made to the `voiceUrl` of the number that was called) for an inbound Call.
         
     | 
| 
       19 
19 
     | 
    
         
             
                attr_accessor :action_url
         
     | 
| 
       20 
20 
     | 
    
         | 
| 
       21 
21 
     | 
    
         
             
                # Attribute mapping from ruby-style variable name to JSON key.
         
     | 
| 
         @@ -73,12 +73,17 @@ module Freeclimb 
     | 
|
| 
       73 
73 
     | 
    
         
             
                # @return Array for valid properties with the reasons
         
     | 
| 
       74 
74 
     | 
    
         
             
                def list_invalid_properties
         
     | 
| 
       75 
75 
     | 
    
         
             
                  invalid_properties = super
         
     | 
| 
      
 76 
     | 
    
         
            +
                  if @action_url.nil?
         
     | 
| 
      
 77 
     | 
    
         
            +
                    invalid_properties.push('invalid value for "action_url", action_url cannot be nil.')
         
     | 
| 
      
 78 
     | 
    
         
            +
                  end
         
     | 
| 
      
 79 
     | 
    
         
            +
             
     | 
| 
       76 
80 
     | 
    
         
             
                  invalid_properties
         
     | 
| 
       77 
81 
     | 
    
         
             
                end
         
     | 
| 
       78 
82 
     | 
    
         | 
| 
       79 
83 
     | 
    
         
             
                # Check to see if the all the properties in the model are valid
         
     | 
| 
       80 
84 
     | 
    
         
             
                # @return true if the model is valid
         
     | 
| 
       81 
85 
     | 
    
         
             
                def valid?
         
     | 
| 
      
 86 
     | 
    
         
            +
                  return false if @action_url.nil?
         
     | 
| 
       82 
87 
     | 
    
         
             
                  true && super
         
     | 
| 
       83 
88 
     | 
    
         
             
                end
         
     | 
| 
       84 
89 
     | 
    
         | 
| 
         @@ -14,7 +14,7 @@ require 'date' 
     | 
|
| 
       14 
14 
     | 
    
         | 
| 
       15 
15 
     | 
    
         
             
            module Freeclimb
         
     | 
| 
       16 
16 
     | 
    
         
             
              class RedirectAllOf
         
     | 
| 
       17 
     | 
    
         
            -
                #  
     | 
| 
      
 17 
     | 
    
         
            +
                # URL to request a new PerCL script to continue with the current Call's processing. When `Redirect` invokes the `actionUrl`, an `inbound` Webhook is sent. This request therefore looks identical to the initial request (made to the `voiceUrl` of the number that was called) for an inbound Call.
         
     | 
| 
       18 
18 
     | 
    
         
             
                attr_accessor :action_url
         
     | 
| 
       19 
19 
     | 
    
         | 
| 
       20 
20 
     | 
    
         
             
                # Attribute mapping from ruby-style variable name to JSON key.
         
     | 
| 
         @@ -61,12 +61,17 @@ module Freeclimb 
     | 
|
| 
       61 
61 
     | 
    
         
             
                # @return Array for valid properties with the reasons
         
     | 
| 
       62 
62 
     | 
    
         
             
                def list_invalid_properties
         
     | 
| 
       63 
63 
     | 
    
         
             
                  invalid_properties = Array.new
         
     | 
| 
      
 64 
     | 
    
         
            +
                  if @action_url.nil?
         
     | 
| 
      
 65 
     | 
    
         
            +
                    invalid_properties.push('invalid value for "action_url", action_url cannot be nil.')
         
     | 
| 
      
 66 
     | 
    
         
            +
                  end
         
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
       64 
68 
     | 
    
         
             
                  invalid_properties
         
     | 
| 
       65 
69 
     | 
    
         
             
                end
         
     | 
| 
       66 
70 
     | 
    
         | 
| 
       67 
71 
     | 
    
         
             
                # Check to see if the all the properties in the model are valid
         
     | 
| 
       68 
72 
     | 
    
         
             
                # @return true if the model is valid
         
     | 
| 
       69 
73 
     | 
    
         
             
                def valid?
         
     | 
| 
      
 74 
     | 
    
         
            +
                  return false if @action_url.nil?
         
     | 
| 
       70 
75 
     | 
    
         
             
                  true
         
     | 
| 
       71 
76 
     | 
    
         
             
                end
         
     | 
| 
       72 
77 
     | 
    
         | 
| 
         @@ -0,0 +1,220 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            =begin
         
     | 
| 
      
 2 
     | 
    
         
            +
            #FreeClimb API
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            #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.
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            The version of the OpenAPI document: 1.0.0
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            Generated by: https://openapi-generator.tech
         
     | 
| 
      
 9 
     | 
    
         
            +
            OpenAPI Generator version: 4.3.0-SNAPSHOT
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            =end
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            require 'date'
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            module Freeclimb
         
     | 
| 
      
 16 
     | 
    
         
            +
              # The `Reject` command blocks an incoming Call. Using `Reject` is the only way to prevent FreeClimb from answering a Call. Any other response will result in an answered Call and your account will be billed.
         
     | 
| 
      
 17 
     | 
    
         
            +
              class Reject < PerclCommand
         
     | 
| 
      
 18 
     | 
    
         
            +
                # Reason for the rejection. This can be any string value. In general, applications should use a set of enumerated values that are predefined to cover all exit points of the call flows for the given application.
         
     | 
| 
      
 19 
     | 
    
         
            +
                attr_accessor :reason
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
                # Attribute mapping from ruby-style variable name to JSON key.
         
     | 
| 
      
 22 
     | 
    
         
            +
                def self.attribute_map
         
     | 
| 
      
 23 
     | 
    
         
            +
                  {
         
     | 
| 
      
 24 
     | 
    
         
            +
                    :'reason' => :'reason'
         
     | 
| 
      
 25 
     | 
    
         
            +
                  }
         
     | 
| 
      
 26 
     | 
    
         
            +
                end
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
                # Attribute type mapping.
         
     | 
| 
      
 29 
     | 
    
         
            +
                def self.openapi_types
         
     | 
| 
      
 30 
     | 
    
         
            +
                  {
         
     | 
| 
      
 31 
     | 
    
         
            +
                    :'reason' => :'String'
         
     | 
| 
      
 32 
     | 
    
         
            +
                  }
         
     | 
| 
      
 33 
     | 
    
         
            +
                end
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
                # List of attributes with nullable: true
         
     | 
| 
      
 36 
     | 
    
         
            +
                def self.openapi_nullable
         
     | 
| 
      
 37 
     | 
    
         
            +
                  Set.new([
         
     | 
| 
      
 38 
     | 
    
         
            +
                  ])
         
     | 
| 
      
 39 
     | 
    
         
            +
                end
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
                # List of class defined in allOf (OpenAPI v3)
         
     | 
| 
      
 42 
     | 
    
         
            +
                def self.openapi_all_of
         
     | 
| 
      
 43 
     | 
    
         
            +
                  [
         
     | 
| 
      
 44 
     | 
    
         
            +
                  :'PerclCommand',
         
     | 
| 
      
 45 
     | 
    
         
            +
                  :'RejectAllOf'
         
     | 
| 
      
 46 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 47 
     | 
    
         
            +
                end
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
                # Initializes the object
         
     | 
| 
      
 50 
     | 
    
         
            +
                # @param [Hash] attributes Model attributes in the form of hash
         
     | 
| 
      
 51 
     | 
    
         
            +
                def initialize(attributes = {})
         
     | 
| 
      
 52 
     | 
    
         
            +
                  if (!attributes.is_a?(Hash))
         
     | 
| 
      
 53 
     | 
    
         
            +
                    fail ArgumentError, "The input argument (attributes) must be a hash in `Freeclimb::Reject` initialize method"
         
     | 
| 
      
 54 
     | 
    
         
            +
                  end
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
                  # check to see if the attribute exists and convert string to symbol for hash key
         
     | 
| 
      
 57 
     | 
    
         
            +
                  attributes = attributes.each_with_object({}) { |(k, v), h|
         
     | 
| 
      
 58 
     | 
    
         
            +
                    if (!self.class.attribute_map.key?(k.to_sym))
         
     | 
| 
      
 59 
     | 
    
         
            +
                      fail ArgumentError, "`#{k}` is not a valid attribute in `Freeclimb::Reject`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
         
     | 
| 
      
 60 
     | 
    
         
            +
                    end
         
     | 
| 
      
 61 
     | 
    
         
            +
                    h[k.to_sym] = v
         
     | 
| 
      
 62 
     | 
    
         
            +
                  }
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
                  # call parent's initialize
         
     | 
| 
      
 65 
     | 
    
         
            +
                  super(attributes)
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
                  if attributes.key?(:'reason')
         
     | 
| 
      
 68 
     | 
    
         
            +
                    self.reason = attributes[:'reason']
         
     | 
| 
      
 69 
     | 
    
         
            +
                  end
         
     | 
| 
      
 70 
     | 
    
         
            +
                end
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
                # Show invalid properties with the reasons. Usually used together with valid?
         
     | 
| 
      
 73 
     | 
    
         
            +
                # @return Array for valid properties with the reasons
         
     | 
| 
      
 74 
     | 
    
         
            +
                def list_invalid_properties
         
     | 
| 
      
 75 
     | 
    
         
            +
                  invalid_properties = super
         
     | 
| 
      
 76 
     | 
    
         
            +
                  invalid_properties
         
     | 
| 
      
 77 
     | 
    
         
            +
                end
         
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
                # Check to see if the all the properties in the model are valid
         
     | 
| 
      
 80 
     | 
    
         
            +
                # @return true if the model is valid
         
     | 
| 
      
 81 
     | 
    
         
            +
                def valid?
         
     | 
| 
      
 82 
     | 
    
         
            +
                  true && super
         
     | 
| 
      
 83 
     | 
    
         
            +
                end
         
     | 
| 
      
 84 
     | 
    
         
            +
             
     | 
| 
      
 85 
     | 
    
         
            +
                # Checks equality by comparing each attribute.
         
     | 
| 
      
 86 
     | 
    
         
            +
                # @param [Object] Object to be compared
         
     | 
| 
      
 87 
     | 
    
         
            +
                def ==(o)
         
     | 
| 
      
 88 
     | 
    
         
            +
                  return true if self.equal?(o)
         
     | 
| 
      
 89 
     | 
    
         
            +
                  self.class == o.class &&
         
     | 
| 
      
 90 
     | 
    
         
            +
                      reason == o.reason && super(o)
         
     | 
| 
      
 91 
     | 
    
         
            +
                end
         
     | 
| 
      
 92 
     | 
    
         
            +
             
     | 
| 
      
 93 
     | 
    
         
            +
                # @see the `==` method
         
     | 
| 
      
 94 
     | 
    
         
            +
                # @param [Object] Object to be compared
         
     | 
| 
      
 95 
     | 
    
         
            +
                def eql?(o)
         
     | 
| 
      
 96 
     | 
    
         
            +
                  self == o
         
     | 
| 
      
 97 
     | 
    
         
            +
                end
         
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
                # Calculates hash code according to all attributes.
         
     | 
| 
      
 100 
     | 
    
         
            +
                # @return [Integer] Hash code
         
     | 
| 
      
 101 
     | 
    
         
            +
                def hash
         
     | 
| 
      
 102 
     | 
    
         
            +
                  [reason].hash
         
     | 
| 
      
 103 
     | 
    
         
            +
                end
         
     | 
| 
      
 104 
     | 
    
         
            +
             
     | 
| 
      
 105 
     | 
    
         
            +
                # Builds the object from hash
         
     | 
| 
      
 106 
     | 
    
         
            +
                # @param [Hash] attributes Model attributes in the form of hash
         
     | 
| 
      
 107 
     | 
    
         
            +
                # @return [Object] Returns the model itself
         
     | 
| 
      
 108 
     | 
    
         
            +
                def self.build_from_hash(attributes)
         
     | 
| 
      
 109 
     | 
    
         
            +
                  new.build_from_hash(attributes)
         
     | 
| 
      
 110 
     | 
    
         
            +
                end
         
     | 
| 
      
 111 
     | 
    
         
            +
             
     | 
| 
      
 112 
     | 
    
         
            +
                # Builds the object from hash
         
     | 
| 
      
 113 
     | 
    
         
            +
                # @param [Hash] attributes Model attributes in the form of hash
         
     | 
| 
      
 114 
     | 
    
         
            +
                # @return [Object] Returns the model itself
         
     | 
| 
      
 115 
     | 
    
         
            +
                def build_from_hash(attributes)
         
     | 
| 
      
 116 
     | 
    
         
            +
                  return nil unless attributes.is_a?(Hash)
         
     | 
| 
      
 117 
     | 
    
         
            +
                  super(attributes)
         
     | 
| 
      
 118 
     | 
    
         
            +
                  self.class.openapi_types.each_pair do |key, type|
         
     | 
| 
      
 119 
     | 
    
         
            +
                    if type =~ /\AArray<(.*)>/i
         
     | 
| 
      
 120 
     | 
    
         
            +
                      # check to ensure the input is an array given that the attribute
         
     | 
| 
      
 121 
     | 
    
         
            +
                      # is documented as an array but the input is not
         
     | 
| 
      
 122 
     | 
    
         
            +
                      if attributes[self.class.attribute_map[key]].is_a?(Array)
         
     | 
| 
      
 123 
     | 
    
         
            +
                        self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
         
     | 
| 
      
 124 
     | 
    
         
            +
                      end
         
     | 
| 
      
 125 
     | 
    
         
            +
                    elsif !attributes[self.class.attribute_map[key]].nil?
         
     | 
| 
      
 126 
     | 
    
         
            +
                      self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
         
     | 
| 
      
 127 
     | 
    
         
            +
                    end # or else data not found in attributes(hash), not an issue as the data can be optional
         
     | 
| 
      
 128 
     | 
    
         
            +
                  end
         
     | 
| 
      
 129 
     | 
    
         
            +
             
     | 
| 
      
 130 
     | 
    
         
            +
                  self
         
     | 
| 
      
 131 
     | 
    
         
            +
                end
         
     | 
| 
      
 132 
     | 
    
         
            +
             
     | 
| 
      
 133 
     | 
    
         
            +
                # Deserializes the data based on type
         
     | 
| 
      
 134 
     | 
    
         
            +
                # @param string type Data type
         
     | 
| 
      
 135 
     | 
    
         
            +
                # @param string value Value to be deserialized
         
     | 
| 
      
 136 
     | 
    
         
            +
                # @return [Object] Deserialized data
         
     | 
| 
      
 137 
     | 
    
         
            +
                def _deserialize(type, value)
         
     | 
| 
      
 138 
     | 
    
         
            +
                  case type.to_sym
         
     | 
| 
      
 139 
     | 
    
         
            +
                  when :DateTime
         
     | 
| 
      
 140 
     | 
    
         
            +
                    DateTime.parse(value)
         
     | 
| 
      
 141 
     | 
    
         
            +
                  when :Date
         
     | 
| 
      
 142 
     | 
    
         
            +
                    Date.parse(value)
         
     | 
| 
      
 143 
     | 
    
         
            +
                  when :String
         
     | 
| 
      
 144 
     | 
    
         
            +
                    value.to_s
         
     | 
| 
      
 145 
     | 
    
         
            +
                  when :Integer
         
     | 
| 
      
 146 
     | 
    
         
            +
                    value.to_i
         
     | 
| 
      
 147 
     | 
    
         
            +
                  when :Float
         
     | 
| 
      
 148 
     | 
    
         
            +
                    value.to_f
         
     | 
| 
      
 149 
     | 
    
         
            +
                  when :Boolean
         
     | 
| 
      
 150 
     | 
    
         
            +
                    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
         
     | 
| 
      
 151 
     | 
    
         
            +
                      true
         
     | 
| 
      
 152 
     | 
    
         
            +
                    else
         
     | 
| 
      
 153 
     | 
    
         
            +
                      false
         
     | 
| 
      
 154 
     | 
    
         
            +
                    end
         
     | 
| 
      
 155 
     | 
    
         
            +
                  when :Object
         
     | 
| 
      
 156 
     | 
    
         
            +
                    # generic object (usually a Hash), return directly
         
     | 
| 
      
 157 
     | 
    
         
            +
                    value
         
     | 
| 
      
 158 
     | 
    
         
            +
                  when /\AArray<(?<inner_type>.+)>\z/
         
     | 
| 
      
 159 
     | 
    
         
            +
                    inner_type = Regexp.last_match[:inner_type]
         
     | 
| 
      
 160 
     | 
    
         
            +
                    value.map { |v| _deserialize(inner_type, v) }
         
     | 
| 
      
 161 
     | 
    
         
            +
                  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
         
     | 
| 
      
 162 
     | 
    
         
            +
                    k_type = Regexp.last_match[:k_type]
         
     | 
| 
      
 163 
     | 
    
         
            +
                    v_type = Regexp.last_match[:v_type]
         
     | 
| 
      
 164 
     | 
    
         
            +
                    {}.tap do |hash|
         
     | 
| 
      
 165 
     | 
    
         
            +
                      value.each do |k, v|
         
     | 
| 
      
 166 
     | 
    
         
            +
                        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
         
     | 
| 
      
 167 
     | 
    
         
            +
                      end
         
     | 
| 
      
 168 
     | 
    
         
            +
                    end
         
     | 
| 
      
 169 
     | 
    
         
            +
                  else # model
         
     | 
| 
      
 170 
     | 
    
         
            +
                    Freeclimb.const_get(type).build_from_hash(value)
         
     | 
| 
      
 171 
     | 
    
         
            +
                  end
         
     | 
| 
      
 172 
     | 
    
         
            +
                end
         
     | 
| 
      
 173 
     | 
    
         
            +
             
     | 
| 
      
 174 
     | 
    
         
            +
                # Returns the string representation of the object
         
     | 
| 
      
 175 
     | 
    
         
            +
                # @return [String] String presentation of the object
         
     | 
| 
      
 176 
     | 
    
         
            +
                def to_s
         
     | 
| 
      
 177 
     | 
    
         
            +
                  to_hash.to_s
         
     | 
| 
      
 178 
     | 
    
         
            +
                end
         
     | 
| 
      
 179 
     | 
    
         
            +
             
     | 
| 
      
 180 
     | 
    
         
            +
                # to_body is an alias to to_hash (backward compatibility)
         
     | 
| 
      
 181 
     | 
    
         
            +
                # @return [Hash] Returns the object in the form of hash
         
     | 
| 
      
 182 
     | 
    
         
            +
                def to_body
         
     | 
| 
      
 183 
     | 
    
         
            +
                  to_hash
         
     | 
| 
      
 184 
     | 
    
         
            +
                end
         
     | 
| 
      
 185 
     | 
    
         
            +
             
     | 
| 
      
 186 
     | 
    
         
            +
                # Returns the object in the form of hash
         
     | 
| 
      
 187 
     | 
    
         
            +
                # @return [Hash] Returns the object in the form of hash
         
     | 
| 
      
 188 
     | 
    
         
            +
                def to_hash
         
     | 
| 
      
 189 
     | 
    
         
            +
                  hash = super
         
     | 
| 
      
 190 
     | 
    
         
            +
                  self.class.attribute_map.each_pair do |attr, param|
         
     | 
| 
      
 191 
     | 
    
         
            +
                    value = self.send(attr)
         
     | 
| 
      
 192 
     | 
    
         
            +
                    if value.nil?
         
     | 
| 
      
 193 
     | 
    
         
            +
                      is_nullable = self.class.openapi_nullable.include?(attr)
         
     | 
| 
      
 194 
     | 
    
         
            +
                      next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
         
     | 
| 
      
 195 
     | 
    
         
            +
                    end
         
     | 
| 
      
 196 
     | 
    
         
            +
                    
         
     | 
| 
      
 197 
     | 
    
         
            +
                    hash[param] = _to_hash(value)
         
     | 
| 
      
 198 
     | 
    
         
            +
                  end
         
     | 
| 
      
 199 
     | 
    
         
            +
                  hash
         
     | 
| 
      
 200 
     | 
    
         
            +
                end
         
     | 
| 
      
 201 
     | 
    
         
            +
             
     | 
| 
      
 202 
     | 
    
         
            +
                # Outputs non-array value in the form of hash
         
     | 
| 
      
 203 
     | 
    
         
            +
                # For object, use to_hash. Otherwise, just return the value
         
     | 
| 
      
 204 
     | 
    
         
            +
                # @param [Object] value Any valid value
         
     | 
| 
      
 205 
     | 
    
         
            +
                # @return [Hash] Returns the value in the form of hash
         
     | 
| 
      
 206 
     | 
    
         
            +
                def _to_hash(value)
         
     | 
| 
      
 207 
     | 
    
         
            +
                  if value.is_a?(Array)
         
     | 
| 
      
 208 
     | 
    
         
            +
                    value.compact.map { |v| _to_hash(v) }
         
     | 
| 
      
 209 
     | 
    
         
            +
                  elsif value.is_a?(Hash)
         
     | 
| 
      
 210 
     | 
    
         
            +
                    {}.tap do |hash|
         
     | 
| 
      
 211 
     | 
    
         
            +
                      value.each { |k, v| hash[k] = _to_hash(v) }
         
     | 
| 
      
 212 
     | 
    
         
            +
                    end
         
     | 
| 
      
 213 
     | 
    
         
            +
                  elsif value.respond_to? :to_hash
         
     | 
| 
      
 214 
     | 
    
         
            +
                    value.to_hash
         
     | 
| 
      
 215 
     | 
    
         
            +
                  else
         
     | 
| 
      
 216 
     | 
    
         
            +
                    value
         
     | 
| 
      
 217 
     | 
    
         
            +
                  end
         
     | 
| 
      
 218 
     | 
    
         
            +
                end
         
     | 
| 
      
 219 
     | 
    
         
            +
              end
         
     | 
| 
      
 220 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,207 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            =begin
         
     | 
| 
      
 2 
     | 
    
         
            +
            #FreeClimb API
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            #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.
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            The version of the OpenAPI document: 1.0.0
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            Generated by: https://openapi-generator.tech
         
     | 
| 
      
 9 
     | 
    
         
            +
            OpenAPI Generator version: 4.3.0-SNAPSHOT
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            =end
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            require 'date'
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            module Freeclimb
         
     | 
| 
      
 16 
     | 
    
         
            +
              class RejectAllOf
         
     | 
| 
      
 17 
     | 
    
         
            +
                # Reason for the rejection. This can be any string value. In general, applications should use a set of enumerated values that are predefined to cover all exit points of the call flows for the given application.
         
     | 
| 
      
 18 
     | 
    
         
            +
                attr_accessor :reason
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
                # Attribute mapping from ruby-style variable name to JSON key.
         
     | 
| 
      
 21 
     | 
    
         
            +
                def self.attribute_map
         
     | 
| 
      
 22 
     | 
    
         
            +
                  {
         
     | 
| 
      
 23 
     | 
    
         
            +
                    :'reason' => :'reason'
         
     | 
| 
      
 24 
     | 
    
         
            +
                  }
         
     | 
| 
      
 25 
     | 
    
         
            +
                end
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
                # Attribute type mapping.
         
     | 
| 
      
 28 
     | 
    
         
            +
                def self.openapi_types
         
     | 
| 
      
 29 
     | 
    
         
            +
                  {
         
     | 
| 
      
 30 
     | 
    
         
            +
                    :'reason' => :'String'
         
     | 
| 
      
 31 
     | 
    
         
            +
                  }
         
     | 
| 
      
 32 
     | 
    
         
            +
                end
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
                # List of attributes with nullable: true
         
     | 
| 
      
 35 
     | 
    
         
            +
                def self.openapi_nullable
         
     | 
| 
      
 36 
     | 
    
         
            +
                  Set.new([
         
     | 
| 
      
 37 
     | 
    
         
            +
                  ])
         
     | 
| 
      
 38 
     | 
    
         
            +
                end
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
                # Initializes the object
         
     | 
| 
      
 41 
     | 
    
         
            +
                # @param [Hash] attributes Model attributes in the form of hash
         
     | 
| 
      
 42 
     | 
    
         
            +
                def initialize(attributes = {})
         
     | 
| 
      
 43 
     | 
    
         
            +
                  if (!attributes.is_a?(Hash))
         
     | 
| 
      
 44 
     | 
    
         
            +
                    fail ArgumentError, "The input argument (attributes) must be a hash in `Freeclimb::RejectAllOf` initialize method"
         
     | 
| 
      
 45 
     | 
    
         
            +
                  end
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
                  # check to see if the attribute exists and convert string to symbol for hash key
         
     | 
| 
      
 48 
     | 
    
         
            +
                  attributes = attributes.each_with_object({}) { |(k, v), h|
         
     | 
| 
      
 49 
     | 
    
         
            +
                    if (!self.class.attribute_map.key?(k.to_sym))
         
     | 
| 
      
 50 
     | 
    
         
            +
                      fail ArgumentError, "`#{k}` is not a valid attribute in `Freeclimb::RejectAllOf`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
         
     | 
| 
      
 51 
     | 
    
         
            +
                    end
         
     | 
| 
      
 52 
     | 
    
         
            +
                    h[k.to_sym] = v
         
     | 
| 
      
 53 
     | 
    
         
            +
                  }
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
                  if attributes.key?(:'reason')
         
     | 
| 
      
 56 
     | 
    
         
            +
                    self.reason = attributes[:'reason']
         
     | 
| 
      
 57 
     | 
    
         
            +
                  end
         
     | 
| 
      
 58 
     | 
    
         
            +
                end
         
     | 
| 
      
 59 
     | 
    
         
            +
             
     | 
| 
      
 60 
     | 
    
         
            +
                # Show invalid properties with the reasons. Usually used together with valid?
         
     | 
| 
      
 61 
     | 
    
         
            +
                # @return Array for valid properties with the reasons
         
     | 
| 
      
 62 
     | 
    
         
            +
                def list_invalid_properties
         
     | 
| 
      
 63 
     | 
    
         
            +
                  invalid_properties = Array.new
         
     | 
| 
      
 64 
     | 
    
         
            +
                  invalid_properties
         
     | 
| 
      
 65 
     | 
    
         
            +
                end
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
                # Check to see if the all the properties in the model are valid
         
     | 
| 
      
 68 
     | 
    
         
            +
                # @return true if the model is valid
         
     | 
| 
      
 69 
     | 
    
         
            +
                def valid?
         
     | 
| 
      
 70 
     | 
    
         
            +
                  true
         
     | 
| 
      
 71 
     | 
    
         
            +
                end
         
     | 
| 
      
 72 
     | 
    
         
            +
             
     | 
| 
      
 73 
     | 
    
         
            +
                # Checks equality by comparing each attribute.
         
     | 
| 
      
 74 
     | 
    
         
            +
                # @param [Object] Object to be compared
         
     | 
| 
      
 75 
     | 
    
         
            +
                def ==(o)
         
     | 
| 
      
 76 
     | 
    
         
            +
                  return true if self.equal?(o)
         
     | 
| 
      
 77 
     | 
    
         
            +
                  self.class == o.class &&
         
     | 
| 
      
 78 
     | 
    
         
            +
                      reason == o.reason
         
     | 
| 
      
 79 
     | 
    
         
            +
                end
         
     | 
| 
      
 80 
     | 
    
         
            +
             
     | 
| 
      
 81 
     | 
    
         
            +
                # @see the `==` method
         
     | 
| 
      
 82 
     | 
    
         
            +
                # @param [Object] Object to be compared
         
     | 
| 
      
 83 
     | 
    
         
            +
                def eql?(o)
         
     | 
| 
      
 84 
     | 
    
         
            +
                  self == o
         
     | 
| 
      
 85 
     | 
    
         
            +
                end
         
     | 
| 
      
 86 
     | 
    
         
            +
             
     | 
| 
      
 87 
     | 
    
         
            +
                # Calculates hash code according to all attributes.
         
     | 
| 
      
 88 
     | 
    
         
            +
                # @return [Integer] Hash code
         
     | 
| 
      
 89 
     | 
    
         
            +
                def hash
         
     | 
| 
      
 90 
     | 
    
         
            +
                  [reason].hash
         
     | 
| 
      
 91 
     | 
    
         
            +
                end
         
     | 
| 
      
 92 
     | 
    
         
            +
             
     | 
| 
      
 93 
     | 
    
         
            +
                # Builds the object from hash
         
     | 
| 
      
 94 
     | 
    
         
            +
                # @param [Hash] attributes Model attributes in the form of hash
         
     | 
| 
      
 95 
     | 
    
         
            +
                # @return [Object] Returns the model itself
         
     | 
| 
      
 96 
     | 
    
         
            +
                def self.build_from_hash(attributes)
         
     | 
| 
      
 97 
     | 
    
         
            +
                  new.build_from_hash(attributes)
         
     | 
| 
      
 98 
     | 
    
         
            +
                end
         
     | 
| 
      
 99 
     | 
    
         
            +
             
     | 
| 
      
 100 
     | 
    
         
            +
                # Builds the object from hash
         
     | 
| 
      
 101 
     | 
    
         
            +
                # @param [Hash] attributes Model attributes in the form of hash
         
     | 
| 
      
 102 
     | 
    
         
            +
                # @return [Object] Returns the model itself
         
     | 
| 
      
 103 
     | 
    
         
            +
                def build_from_hash(attributes)
         
     | 
| 
      
 104 
     | 
    
         
            +
                  return nil unless attributes.is_a?(Hash)
         
     | 
| 
      
 105 
     | 
    
         
            +
                  self.class.openapi_types.each_pair do |key, type|
         
     | 
| 
      
 106 
     | 
    
         
            +
                    if type =~ /\AArray<(.*)>/i
         
     | 
| 
      
 107 
     | 
    
         
            +
                      # check to ensure the input is an array given that the attribute
         
     | 
| 
      
 108 
     | 
    
         
            +
                      # is documented as an array but the input is not
         
     | 
| 
      
 109 
     | 
    
         
            +
                      if attributes[self.class.attribute_map[key]].is_a?(Array)
         
     | 
| 
      
 110 
     | 
    
         
            +
                        self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
         
     | 
| 
      
 111 
     | 
    
         
            +
                      end
         
     | 
| 
      
 112 
     | 
    
         
            +
                    elsif !attributes[self.class.attribute_map[key]].nil?
         
     | 
| 
      
 113 
     | 
    
         
            +
                      self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
         
     | 
| 
      
 114 
     | 
    
         
            +
                    end # or else data not found in attributes(hash), not an issue as the data can be optional
         
     | 
| 
      
 115 
     | 
    
         
            +
                  end
         
     | 
| 
      
 116 
     | 
    
         
            +
             
     | 
| 
      
 117 
     | 
    
         
            +
                  self
         
     | 
| 
      
 118 
     | 
    
         
            +
                end
         
     | 
| 
      
 119 
     | 
    
         
            +
             
     | 
| 
      
 120 
     | 
    
         
            +
                # Deserializes the data based on type
         
     | 
| 
      
 121 
     | 
    
         
            +
                # @param string type Data type
         
     | 
| 
      
 122 
     | 
    
         
            +
                # @param string value Value to be deserialized
         
     | 
| 
      
 123 
     | 
    
         
            +
                # @return [Object] Deserialized data
         
     | 
| 
      
 124 
     | 
    
         
            +
                def _deserialize(type, value)
         
     | 
| 
      
 125 
     | 
    
         
            +
                  case type.to_sym
         
     | 
| 
      
 126 
     | 
    
         
            +
                  when :DateTime
         
     | 
| 
      
 127 
     | 
    
         
            +
                    DateTime.parse(value)
         
     | 
| 
      
 128 
     | 
    
         
            +
                  when :Date
         
     | 
| 
      
 129 
     | 
    
         
            +
                    Date.parse(value)
         
     | 
| 
      
 130 
     | 
    
         
            +
                  when :String
         
     | 
| 
      
 131 
     | 
    
         
            +
                    value.to_s
         
     | 
| 
      
 132 
     | 
    
         
            +
                  when :Integer
         
     | 
| 
      
 133 
     | 
    
         
            +
                    value.to_i
         
     | 
| 
      
 134 
     | 
    
         
            +
                  when :Float
         
     | 
| 
      
 135 
     | 
    
         
            +
                    value.to_f
         
     | 
| 
      
 136 
     | 
    
         
            +
                  when :Boolean
         
     | 
| 
      
 137 
     | 
    
         
            +
                    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
         
     | 
| 
      
 138 
     | 
    
         
            +
                      true
         
     | 
| 
      
 139 
     | 
    
         
            +
                    else
         
     | 
| 
      
 140 
     | 
    
         
            +
                      false
         
     | 
| 
      
 141 
     | 
    
         
            +
                    end
         
     | 
| 
      
 142 
     | 
    
         
            +
                  when :Object
         
     | 
| 
      
 143 
     | 
    
         
            +
                    # generic object (usually a Hash), return directly
         
     | 
| 
      
 144 
     | 
    
         
            +
                    value
         
     | 
| 
      
 145 
     | 
    
         
            +
                  when /\AArray<(?<inner_type>.+)>\z/
         
     | 
| 
      
 146 
     | 
    
         
            +
                    inner_type = Regexp.last_match[:inner_type]
         
     | 
| 
      
 147 
     | 
    
         
            +
                    value.map { |v| _deserialize(inner_type, v) }
         
     | 
| 
      
 148 
     | 
    
         
            +
                  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
         
     | 
| 
      
 149 
     | 
    
         
            +
                    k_type = Regexp.last_match[:k_type]
         
     | 
| 
      
 150 
     | 
    
         
            +
                    v_type = Regexp.last_match[:v_type]
         
     | 
| 
      
 151 
     | 
    
         
            +
                    {}.tap do |hash|
         
     | 
| 
      
 152 
     | 
    
         
            +
                      value.each do |k, v|
         
     | 
| 
      
 153 
     | 
    
         
            +
                        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
         
     | 
| 
      
 154 
     | 
    
         
            +
                      end
         
     | 
| 
      
 155 
     | 
    
         
            +
                    end
         
     | 
| 
      
 156 
     | 
    
         
            +
                  else # model
         
     | 
| 
      
 157 
     | 
    
         
            +
                    Freeclimb.const_get(type).build_from_hash(value)
         
     | 
| 
      
 158 
     | 
    
         
            +
                  end
         
     | 
| 
      
 159 
     | 
    
         
            +
                end
         
     | 
| 
      
 160 
     | 
    
         
            +
             
     | 
| 
      
 161 
     | 
    
         
            +
                # Returns the string representation of the object
         
     | 
| 
      
 162 
     | 
    
         
            +
                # @return [String] String presentation of the object
         
     | 
| 
      
 163 
     | 
    
         
            +
                def to_s
         
     | 
| 
      
 164 
     | 
    
         
            +
                  to_hash.to_s
         
     | 
| 
      
 165 
     | 
    
         
            +
                end
         
     | 
| 
      
 166 
     | 
    
         
            +
             
     | 
| 
      
 167 
     | 
    
         
            +
                # to_body is an alias to to_hash (backward compatibility)
         
     | 
| 
      
 168 
     | 
    
         
            +
                # @return [Hash] Returns the object in the form of hash
         
     | 
| 
      
 169 
     | 
    
         
            +
                def to_body
         
     | 
| 
      
 170 
     | 
    
         
            +
                  to_hash
         
     | 
| 
      
 171 
     | 
    
         
            +
                end
         
     | 
| 
      
 172 
     | 
    
         
            +
             
     | 
| 
      
 173 
     | 
    
         
            +
                # Returns the object in the form of hash
         
     | 
| 
      
 174 
     | 
    
         
            +
                # @return [Hash] Returns the object in the form of hash
         
     | 
| 
      
 175 
     | 
    
         
            +
                def to_hash
         
     | 
| 
      
 176 
     | 
    
         
            +
                  hash = {}
         
     | 
| 
      
 177 
     | 
    
         
            +
                  self.class.attribute_map.each_pair do |attr, param|
         
     | 
| 
      
 178 
     | 
    
         
            +
                    value = self.send(attr)
         
     | 
| 
      
 179 
     | 
    
         
            +
                    if value.nil?
         
     | 
| 
      
 180 
     | 
    
         
            +
                      is_nullable = self.class.openapi_nullable.include?(attr)
         
     | 
| 
      
 181 
     | 
    
         
            +
                      next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
         
     | 
| 
      
 182 
     | 
    
         
            +
                    end
         
     | 
| 
      
 183 
     | 
    
         
            +
                    
         
     | 
| 
      
 184 
     | 
    
         
            +
                    hash[param] = _to_hash(value)
         
     | 
| 
      
 185 
     | 
    
         
            +
                  end
         
     | 
| 
      
 186 
     | 
    
         
            +
                  hash
         
     | 
| 
      
 187 
     | 
    
         
            +
                end
         
     | 
| 
      
 188 
     | 
    
         
            +
             
     | 
| 
      
 189 
     | 
    
         
            +
                # Outputs non-array value in the form of hash
         
     | 
| 
      
 190 
     | 
    
         
            +
                # For object, use to_hash. Otherwise, just return the value
         
     | 
| 
      
 191 
     | 
    
         
            +
                # @param [Object] value Any valid value
         
     | 
| 
      
 192 
     | 
    
         
            +
                # @return [Hash] Returns the value in the form of hash
         
     | 
| 
      
 193 
     | 
    
         
            +
                def _to_hash(value)
         
     | 
| 
      
 194 
     | 
    
         
            +
                  if value.is_a?(Array)
         
     | 
| 
      
 195 
     | 
    
         
            +
                    value.compact.map { |v| _to_hash(v) }
         
     | 
| 
      
 196 
     | 
    
         
            +
                  elsif value.is_a?(Hash)
         
     | 
| 
      
 197 
     | 
    
         
            +
                    {}.tap do |hash|
         
     | 
| 
      
 198 
     | 
    
         
            +
                      value.each { |k, v| hash[k] = _to_hash(v) }
         
     | 
| 
      
 199 
     | 
    
         
            +
                    end
         
     | 
| 
      
 200 
     | 
    
         
            +
                  elsif value.respond_to? :to_hash
         
     | 
| 
      
 201 
     | 
    
         
            +
                    value.to_hash
         
     | 
| 
      
 202 
     | 
    
         
            +
                  else
         
     | 
| 
      
 203 
     | 
    
         
            +
                    value
         
     | 
| 
      
 204 
     | 
    
         
            +
                  end
         
     | 
| 
      
 205 
     | 
    
         
            +
                end
         
     | 
| 
      
 206 
     | 
    
         
            +
              end
         
     | 
| 
      
 207 
     | 
    
         
            +
            end
         
     |