freeclimb 5.3.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.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +9 -1
  3. data/Gemfile.lock +1 -1
  4. data/README.md +18 -4
  5. data/docs/AvailableNumber.md +0 -4
  6. data/docs/BlobListResponse.md +32 -0
  7. data/docs/BlobResult.md +32 -0
  8. data/docs/CreateBlobRequest.md +22 -0
  9. data/docs/DefaultApi.md +449 -6
  10. data/docs/IncomingNumberResult.md +0 -4
  11. data/docs/ModifyBlobRequest.md +20 -0
  12. data/docs/PlatformError.md +24 -0
  13. data/docs/ReplaceBlobRequest.md +18 -0
  14. data/docs/Say.md +2 -0
  15. data/docs/TTSEngine.md +20 -0
  16. data/docs/TTSEngineName.md +18 -0
  17. data/lib/freeclimb/api/default_api.rb +715 -8
  18. data/lib/freeclimb/models/available_number.rb +1 -23
  19. data/lib/freeclimb/models/blob_list_response.rb +303 -0
  20. data/lib/freeclimb/models/blob_result.rb +332 -0
  21. data/lib/freeclimb/models/create_blob_request.rb +255 -0
  22. data/lib/freeclimb/models/incoming_number_result.rb +1 -23
  23. data/lib/freeclimb/models/modify_blob_request.rb +245 -0
  24. data/lib/freeclimb/models/platform_error.rb +244 -0
  25. data/lib/freeclimb/models/replace_blob_request.rb +221 -0
  26. data/lib/freeclimb/models/say.rb +10 -1
  27. data/lib/freeclimb/models/tts_engine.rb +250 -0
  28. data/lib/freeclimb/models/tts_engine_name.rb +36 -0
  29. data/lib/freeclimb/version.rb +1 -1
  30. data/lib/freeclimb.rb +8 -0
  31. data/openapi.json +894 -97
  32. data/spec/api/default_api_spec.rb +188 -32
  33. data/spec/models/account_result_spec.rb +3 -3
  34. data/spec/models/available_number_spec.rb +3 -98
  35. data/spec/models/blob_list_response_spec.rb +502 -0
  36. data/spec/models/blob_result_spec.rb +489 -0
  37. data/spec/models/call_result_spec.rb +3 -3
  38. data/spec/models/conference_result_spec.rb +3 -3
  39. data/spec/models/create_blob_request_spec.rb +273 -0
  40. data/spec/models/export_request_spec.rb +6 -6
  41. data/spec/models/export_result_spec.rb +6 -6
  42. data/spec/models/incoming_number_result_spec.rb +6 -102
  43. data/spec/models/log_result_spec.rb +3 -3
  44. data/spec/models/message_result_spec.rb +3 -3
  45. data/spec/models/modify_blob_request_spec.rb +226 -0
  46. data/spec/models/platform_error_spec.rb +318 -0
  47. data/spec/models/queue_result_spec.rb +3 -3
  48. data/spec/models/replace_blob_request_spec.rb +176 -0
  49. data/spec/models/say_spec.rb +50 -0
  50. data/spec/models/sms_ten_dlc_partner_campaign_spec.rb +3 -3
  51. data/spec/models/transcribe_utterance_spec.rb +3 -3
  52. data/spec/models/tts_engine_name_spec.rb +75 -0
  53. data/spec/models/tts_engine_spec.rb +183 -0
  54. data/spec/spec_helper.rb +1 -1
  55. metadata +26 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 19724be086a3f951d898dcd13317fa2f02e70c89e3d842d77206ebc09d659521
4
- data.tar.gz: ec0db4ac52c9c4e2b829b5cf9a4a81c01480df7bcbf4c7b31bb1b05ef72128fd
3
+ metadata.gz: 493077c655c7e9edf677bd1e6401b826f51a0af777e1074786dca2bbd7634524
4
+ data.tar.gz: 5900b3444f637a6a8e611aba7f64cc4932111e4f76c59654129965d41e3579f8
5
5
  SHA512:
6
- metadata.gz: bf48e731b5a6f2c64912af974cbcc0954bf3559ed47fc7d90af667dd6bc54637b08266f8f8d5d461074d0120062c931e87f21e9e7b1c5b04468427260816493b
7
- data.tar.gz: 5796ee95c99fcd151bdf683f9daabb6b400316b354bb3047db94e311f494ea5f1e93e03f69f03085c525ebd2b2239b579370d70d390fd44c602f83843cd8b545
6
+ metadata.gz: 6ca548a7765af7814f03390567c3bfe844921a845160c9b856aa1085a2a7ef6bd95d252c719278721d1c135a159b1876b4c3e09da80eb837eb398a96077b8b81
7
+ data.tar.gz: ad65d42d7d44291b030550f40ccbd2ab504867dc3bc1d0713e1f5445bd1d6b2d0fb66d49aa94a3a1856c00a995c8d9ba252aac7742b05837b7b75a7d6dc5be45
data/CHANGELOG.md CHANGED
@@ -7,7 +7,15 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
- None
10
+ <a name="5.4.0"></a>
11
+
12
+ ## [5.4.0] - 2025-10-24
13
+
14
+ ### Added
15
+
16
+ - Add models for new TTS models and engine setup
17
+ - Add models and default api methods for Blob API
18
+
11
19
  <a name="5.3.0"></a>
12
20
 
13
21
  ## [5.3.0] - 2025-09-23
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- freeclimb (5.3.0)
4
+ freeclimb (5.4.0)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -7,7 +7,7 @@ FreeClimb is a cloud-based application programming interface (API) that puts the
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: 1.0.0
10
- - Package version: 5.3.0
10
+ - Package version: 5.4.0
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [https://www.freeclimb.com/support/](https://www.freeclimb.com/support/)
13
13
 
@@ -15,7 +15,7 @@ For more information, please visit [https://www.freeclimb.com/support/](https://
15
15
 
16
16
  Add this to the Gemfile:
17
17
 
18
- gem 'freeclimb', '~> 5.3.0'
18
+ gem 'freeclimb', '~> 5.4.0'
19
19
 
20
20
  and run from your terminal
21
21
 
@@ -44,9 +44,9 @@ gem build freeclimb.gemspec
44
44
  Then either install the gem locally:
45
45
 
46
46
  ```shell
47
- gem install ./freeclimb-5.3.0.gem
47
+ gem install ./freeclimb-5.4.0.gem
48
48
  ```
49
- (for development, run `gem install --dev ./freeclimb-5.3.0.gem` to install the development dependencies)
49
+ (for development, run `gem install --dev ./freeclimb-5.4.0.gem` to install the development dependencies)
50
50
 
51
51
  ## Getting Started
52
52
 
@@ -103,12 +103,14 @@ Class | Method | HTTP request | Description
103
103
  *Freeclimb::DefaultApi* | [**create_a_conference**](docs/DefaultApi.md#create_a_conference) | **POST** /Accounts/{accountId}/Conferences | Create a Conference
104
104
  *Freeclimb::DefaultApi* | [**create_a_queue**](docs/DefaultApi.md#create_a_queue) | **POST** /Accounts/{accountId}/Queues | Create a Queue
105
105
  *Freeclimb::DefaultApi* | [**create_an_application**](docs/DefaultApi.md#create_an_application) | **POST** /Accounts/{accountId}/Applications | Create an application
106
+ *Freeclimb::DefaultApi* | [**create_blob**](docs/DefaultApi.md#create_blob) | **POST** /Accounts/{accountId}/Blobs | Create a Blob
106
107
  *Freeclimb::DefaultApi* | [**create_export**](docs/DefaultApi.md#create_export) | **POST** /Accounts/{accountId}/Exports | Create an Export
107
108
  *Freeclimb::DefaultApi* | [**create_knowledge_base_completion**](docs/DefaultApi.md#create_knowledge_base_completion) | **POST** /Accounts/{accountId}/KnowledgeBases/{knowledgeBaseId}/Completion | Query the knowledge base
108
109
  *Freeclimb::DefaultApi* | [**delete_a_recording**](docs/DefaultApi.md#delete_a_recording) | **DELETE** /Accounts/{accountId}/Recordings/{recordingId} | Delete a Recording
109
110
  *Freeclimb::DefaultApi* | [**delete_an_application**](docs/DefaultApi.md#delete_an_application) | **DELETE** /Accounts/{accountId}/Applications/{applicationId} | Delete an application
110
111
  *Freeclimb::DefaultApi* | [**delete_an_export**](docs/DefaultApi.md#delete_an_export) | **DELETE** /Accounts/{accountId}/Exports/{exportId} | Delete an Export
111
112
  *Freeclimb::DefaultApi* | [**delete_an_incoming_number**](docs/DefaultApi.md#delete_an_incoming_number) | **DELETE** /Accounts/{accountId}/IncomingPhoneNumbers/{phoneNumberId} | Delete an Incoming Number
113
+ *Freeclimb::DefaultApi* | [**delete_blob**](docs/DefaultApi.md#delete_blob) | **DELETE** /Accounts/{accountId}/Blobs/{blobId} | Delete Blob
112
114
  *Freeclimb::DefaultApi* | [**dequeue_a_member**](docs/DefaultApi.md#dequeue_a_member) | **POST** /Accounts/{accountId}/Queues/{queueId}/Members/{callId} | Dequeue a Member
113
115
  *Freeclimb::DefaultApi* | [**dequeue_head_member**](docs/DefaultApi.md#dequeue_head_member) | **POST** /Accounts/{accountId}/Queues/{queueId}/Members/Front | Dequeue Head Member
114
116
  *Freeclimb::DefaultApi* | [**download_a_recording_file**](docs/DefaultApi.md#download_a_recording_file) | **GET** /Accounts/{accountId}/Recordings/{recordingId}/Download | Download a Recording File
@@ -125,6 +127,7 @@ Class | Method | HTTP request | Description
125
127
  *Freeclimb::DefaultApi* | [**get_an_export**](docs/DefaultApi.md#get_an_export) | **GET** /Accounts/{accountId}/Exports/{exportId} | Get an Export
126
128
  *Freeclimb::DefaultApi* | [**get_an_incoming_number**](docs/DefaultApi.md#get_an_incoming_number) | **GET** /Accounts/{accountId}/IncomingPhoneNumbers/{phoneNumberId} | Get an Incoming Number
127
129
  *Freeclimb::DefaultApi* | [**get_an_sms_message**](docs/DefaultApi.md#get_an_sms_message) | **GET** /Accounts/{accountId}/Messages/{messageId} | Get an SMS Message
130
+ *Freeclimb::DefaultApi* | [**get_blob**](docs/DefaultApi.md#get_blob) | **GET** /Accounts/{accountId}/Blobs/{blobId} | Get Blob
128
131
  *Freeclimb::DefaultApi* | [**get_head_member**](docs/DefaultApi.md#get_head_member) | **GET** /Accounts/{accountId}/Queues/{queueId}/Members/Front | Get Head Member
129
132
  *Freeclimb::DefaultApi* | [**get_ten_dlc_sms_brand**](docs/DefaultApi.md#get_ten_dlc_sms_brand) | **GET** /Accounts/{accountId}/Messages/10DLC/Brands/{brandId} | Get a 10DLC SMS Brand
130
133
  *Freeclimb::DefaultApi* | [**get_ten_dlc_sms_brands**](docs/DefaultApi.md#get_ten_dlc_sms_brands) | **GET** /Accounts/{accountId}/Messages/10DLC/Brands | Get list of SMS 10DLC Brands
@@ -138,6 +141,7 @@ Class | Method | HTTP request | Description
138
141
  *Freeclimb::DefaultApi* | [**list_all_account_logs**](docs/DefaultApi.md#list_all_account_logs) | **GET** /Accounts/{accountId}/Logs | List All Account Logs
139
142
  *Freeclimb::DefaultApi* | [**list_applications**](docs/DefaultApi.md#list_applications) | **GET** /Accounts/{accountId}/Applications | List applications
140
143
  *Freeclimb::DefaultApi* | [**list_available_numbers**](docs/DefaultApi.md#list_available_numbers) | **GET** /AvailablePhoneNumbers | List available numbers
144
+ *Freeclimb::DefaultApi* | [**list_blobs**](docs/DefaultApi.md#list_blobs) | **GET** /Accounts/{accountId}/Blobs | List Blobs belonging to an account.
141
145
  *Freeclimb::DefaultApi* | [**list_call_logs**](docs/DefaultApi.md#list_call_logs) | **GET** /Accounts/{accountId}/Calls/{callId}/Logs | List Call Logs
142
146
  *Freeclimb::DefaultApi* | [**list_call_recordings**](docs/DefaultApi.md#list_call_recordings) | **GET** /Accounts/{accountId}/Calls/{callId}/Recordings | List Call Recordings
143
147
  *Freeclimb::DefaultApi* | [**list_calls**](docs/DefaultApi.md#list_calls) | **GET** /Accounts/{accountId}/Calls | List Calls
@@ -151,7 +155,9 @@ Class | Method | HTTP request | Description
151
155
  *Freeclimb::DefaultApi* | [**list_sms_messages**](docs/DefaultApi.md#list_sms_messages) | **GET** /Accounts/{accountId}/Messages | List SMS Messages
152
156
  *Freeclimb::DefaultApi* | [**make_a_call**](docs/DefaultApi.md#make_a_call) | **POST** /Accounts/{accountId}/Calls | Make a Call
153
157
  *Freeclimb::DefaultApi* | [**make_a_webrtc_jwt**](docs/DefaultApi.md#make_a_webrtc_jwt) | **POST** /Accounts/{accountId}/Calls/WebRTC/Token | Make a JWT for WebRTC calling
158
+ *Freeclimb::DefaultApi* | [**modify_blob**](docs/DefaultApi.md#modify_blob) | **PATCH** /Accounts/{accountId}/Blobs/{blobId} | Modify Blob
154
159
  *Freeclimb::DefaultApi* | [**remove_a_participant**](docs/DefaultApi.md#remove_a_participant) | **DELETE** /Accounts/{accountId}/Conferences/{conferenceId}/Participants/{callId} | Remove a Participant
160
+ *Freeclimb::DefaultApi* | [**replace_blob**](docs/DefaultApi.md#replace_blob) | **PUT** /Accounts/{accountId}/Blobs/{blobId} | Replace Blob
155
161
  *Freeclimb::DefaultApi* | [**send_an_sms_message**](docs/DefaultApi.md#send_an_sms_message) | **POST** /Accounts/{accountId}/Messages | Send an SMS Message
156
162
  *Freeclimb::DefaultApi* | [**stream_a_recording_file**](docs/DefaultApi.md#stream_a_recording_file) | **GET** /Accounts/{accountId}/Recordings/{recordingId}/Stream | Stream a Recording File
157
163
  *Freeclimb::DefaultApi* | [**update_a_conference**](docs/DefaultApi.md#update_a_conference) | **POST** /Accounts/{accountId}/Conferences/{conferenceId} | Update a Conference
@@ -179,6 +185,8 @@ Class | Method | HTTP request | Description
179
185
  - [Freeclimb::AvailableNumber](docs/AvailableNumber.md)
180
186
  - [Freeclimb::AvailableNumberList](docs/AvailableNumberList.md)
181
187
  - [Freeclimb::BargeInReason](docs/BargeInReason.md)
188
+ - [Freeclimb::BlobListResponse](docs/BlobListResponse.md)
189
+ - [Freeclimb::BlobResult](docs/BlobResult.md)
182
190
  - [Freeclimb::BuyIncomingNumberRequest](docs/BuyIncomingNumberRequest.md)
183
191
  - [Freeclimb::CallControlWebhook](docs/CallControlWebhook.md)
184
192
  - [Freeclimb::CallDirection](docs/CallDirection.md)
@@ -198,6 +206,7 @@ Class | Method | HTTP request | Description
198
206
  - [Freeclimb::ConferenceResult](docs/ConferenceResult.md)
199
207
  - [Freeclimb::ConferenceStatus](docs/ConferenceStatus.md)
200
208
  - [Freeclimb::ConferenceStatusWebhook](docs/ConferenceStatusWebhook.md)
209
+ - [Freeclimb::CreateBlobRequest](docs/CreateBlobRequest.md)
201
210
  - [Freeclimb::CreateConference](docs/CreateConference.md)
202
211
  - [Freeclimb::CreateConferenceRequest](docs/CreateConferenceRequest.md)
203
212
  - [Freeclimb::CreateConferenceWebhook](docs/CreateConferenceWebhook.md)
@@ -243,6 +252,7 @@ Class | Method | HTTP request | Description
243
252
  - [Freeclimb::MessageStatus](docs/MessageStatus.md)
244
253
  - [Freeclimb::MessageStatusWebhook](docs/MessageStatusWebhook.md)
245
254
  - [Freeclimb::MessagesList](docs/MessagesList.md)
255
+ - [Freeclimb::ModifyBlobRequest](docs/ModifyBlobRequest.md)
246
256
  - [Freeclimb::MutableResourceModel](docs/MutableResourceModel.md)
247
257
  - [Freeclimb::OutDial](docs/OutDial.md)
248
258
  - [Freeclimb::OutDialApiConnectWebhook](docs/OutDialApiConnectWebhook.md)
@@ -253,6 +263,7 @@ Class | Method | HTTP request | Description
253
263
  - [Freeclimb::Pause](docs/Pause.md)
254
264
  - [Freeclimb::PerclCommand](docs/PerclCommand.md)
255
265
  - [Freeclimb::PerclScript](docs/PerclScript.md)
266
+ - [Freeclimb::PlatformError](docs/PlatformError.md)
256
267
  - [Freeclimb::Play](docs/Play.md)
257
268
  - [Freeclimb::PlayBeep](docs/PlayBeep.md)
258
269
  - [Freeclimb::PlayEarlyMedia](docs/PlayEarlyMedia.md)
@@ -273,6 +284,7 @@ Class | Method | HTTP request | Description
273
284
  - [Freeclimb::Reject](docs/Reject.md)
274
285
  - [Freeclimb::RemoveFromConference](docs/RemoveFromConference.md)
275
286
  - [Freeclimb::RemoveFromQueueNotificationWebhook](docs/RemoveFromQueueNotificationWebhook.md)
287
+ - [Freeclimb::ReplaceBlobRequest](docs/ReplaceBlobRequest.md)
276
288
  - [Freeclimb::RequestType](docs/RequestType.md)
277
289
  - [Freeclimb::SMSTenDLCBrand](docs/SMSTenDLCBrand.md)
278
290
  - [Freeclimb::SMSTenDLCBrandAltBusinessIdType](docs/SMSTenDLCBrandAltBusinessIdType.md)
@@ -300,6 +312,8 @@ Class | Method | HTTP request | Description
300
312
  - [Freeclimb::StartRecordCall](docs/StartRecordCall.md)
301
313
  - [Freeclimb::TFN](docs/TFN.md)
302
314
  - [Freeclimb::TFNCampaign](docs/TFNCampaign.md)
315
+ - [Freeclimb::TTSEngine](docs/TTSEngine.md)
316
+ - [Freeclimb::TTSEngineName](docs/TTSEngineName.md)
303
317
  - [Freeclimb::TerminateConference](docs/TerminateConference.md)
304
318
  - [Freeclimb::TranscribeReason](docs/TranscribeReason.md)
305
319
  - [Freeclimb::TranscribeTermReason](docs/TranscribeTermReason.md)
@@ -7,8 +7,6 @@
7
7
  | **capabilities** | [**Capabilities**](Capabilities.md) | | [optional] |
8
8
  | **campaign_id** | **String** | The campaign ID generated by the campaign registry | [optional] |
9
9
  | **phone_number** | **String** | The phone number, in E.164 format (+ country code and phone number: +18003608245). | [optional] |
10
- | **voice_enabled** | **Boolean** | Typically set to true for all numbers. | [optional] |
11
- | **sms_enabled** | **Boolean** | Indicates whether the phone number can send and receive SMS messages. | [optional] |
12
10
  | **region** | **String** | The state or province of this phone number. | [optional] |
13
11
  | **country** | **String** | The country of this phone number. | [optional] |
14
12
 
@@ -21,8 +19,6 @@ instance = Freeclimb::AvailableNumber.new(
21
19
  capabilities: null,
22
20
  campaign_id: null,
23
21
  phone_number: null,
24
- voice_enabled: null,
25
- sms_enabled: null,
26
22
  region: null,
27
23
  country: null
28
24
  )
@@ -0,0 +1,32 @@
1
+ # Freeclimb::BlobListResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **total** | **Integer** | Total amount of requested resource. | [optional] |
8
+ | **start** | **Integer** | Resource index at start of current page | [optional] |
9
+ | **_end** | **Integer** | Resource index at end of current page | [optional] |
10
+ | **page** | **Integer** | Current page | [optional] |
11
+ | **num_pages** | **Integer** | Total number of pages | [optional] |
12
+ | **page_size** | **Integer** | Number of items per page | [optional] |
13
+ | **next_page_uri** | **String** | Uri to retrieve the next page of items | [optional] |
14
+ | **blobs** | [**Array&lt;BlobResult&gt;**](BlobResult.md) | | [optional] |
15
+
16
+ ## Example
17
+
18
+ ```ruby
19
+ require 'freeclimb'
20
+
21
+ instance = Freeclimb::BlobListResponse.new(
22
+ total: null,
23
+ start: null,
24
+ _end: null,
25
+ page: null,
26
+ num_pages: null,
27
+ page_size: null,
28
+ next_page_uri: null,
29
+ blobs: null
30
+ )
31
+ ```
32
+
@@ -0,0 +1,32 @@
1
+ # Freeclimb::BlobResult
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **blob_id** | **String** | Identifier which can be used to reference this blob in future interations. | [optional] |
8
+ | **account_id** | **String** | | [optional] |
9
+ | **_alias** | **String** | Custom identifier for this blob that is unique for the owning account. It will be set to the blobId by default if not provided in the creation request. | [optional] |
10
+ | **revision** | **Integer** | | [optional] |
11
+ | **date_created** | **Time** | An RFC3339 timestamp with millisecond resolution. It represents the time this blob was created. | [optional] |
12
+ | **date_updated** | **Time** | An RFC3339 timestamp with millisecond resolution. It represents the time this blob was last modified, which at creation will always equal dateCreated. | [optional] |
13
+ | **expires_at** | **Time** | An RFC3339 timestamp with millisecond resolution. It represents the time at which this blob will expire and self delete. | [optional] |
14
+ | **blob** | **Object** | Blob content | [optional] |
15
+
16
+ ## Example
17
+
18
+ ```ruby
19
+ require 'freeclimb'
20
+
21
+ instance = Freeclimb::BlobResult.new(
22
+ blob_id: BL88615a9b4ca7e9aad57d9057773fc74268b9caf7,
23
+ account_id: AC0534faec6b32da45f36166674d65b3903f784141,
24
+ _alias: null,
25
+ revision: null,
26
+ date_created: null,
27
+ date_updated: null,
28
+ expires_at: null,
29
+ blob: null
30
+ )
31
+ ```
32
+
@@ -0,0 +1,22 @@
1
+ # Freeclimb::CreateBlobRequest
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **_alias** | **String** | Custom identifier for this blob that is unique for the owning account. It will be set to the blobId by default if not provided. | [optional] |
8
+ | **expires_at** | **String** | An RFC3339 timestamp with millisecond resolution. This timestamp defines the time at which this blob will delete itself. It must not be more than 48 hours in the future and will default to 9 hours in the future if not provided. | [optional] |
9
+ | **blob** | **Object** | | |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'freeclimb'
15
+
16
+ instance = Freeclimb::CreateBlobRequest.new(
17
+ _alias: null,
18
+ expires_at: 2006-01-02T15:04:05.000Z,
19
+ blob: null
20
+ )
21
+ ```
22
+