musicube_api_client_ruby 1.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (227) hide show
  1. checksums.yaml +7 -0
  2. data/CODE_OF_CONDUCT.md +84 -0
  3. data/Gemfile +9 -0
  4. data/README.md +223 -0
  5. data/Rakefile +10 -0
  6. data/bin/console +15 -0
  7. data/bin/setup +8 -0
  8. data/docs/AllowedValuesApi.md +200 -0
  9. data/docs/CategoryMediumDTO.md +22 -0
  10. data/docs/CategoryMinimalDTO.md +18 -0
  11. data/docs/ConfigAccessDTO.md +20 -0
  12. data/docs/ConfigIdentifierDTO.md +20 -0
  13. data/docs/ContributorTypeDTO.md +18 -0
  14. data/docs/ErrorResponse.md +26 -0
  15. data/docs/FieldSummaryDTO.md +22 -0
  16. data/docs/FileDTO.md +50 -0
  17. data/docs/FileListDTO.md +24 -0
  18. data/docs/FileMinimalWithUrlDTO.md +22 -0
  19. data/docs/FileSmallDTO.md +46 -0
  20. data/docs/FileUploadDTO.md +22 -0
  21. data/docs/FileWIthUrlDTO.md +20 -0
  22. data/docs/FilesSummaryDTO.md +30 -0
  23. data/docs/ForgotPasswordDTO.md +20 -0
  24. data/docs/GenreDTO.md +20 -0
  25. data/docs/GenreMinimalDTO.md +18 -0
  26. data/docs/GenresSummaryDTO.md +22 -0
  27. data/docs/InitPutRecordingAudioDTO.md +22 -0
  28. data/docs/JwtTokenDTO.md +22 -0
  29. data/docs/LoginDTO.md +24 -0
  30. data/docs/MusicalFeaturesDTO.md +186 -0
  31. data/docs/PLineDTO.md +20 -0
  32. data/docs/PartyApi.md +75 -0
  33. data/docs/PartyLargeDTO.md +32 -0
  34. data/docs/PartySmallDTO.md +20 -0
  35. data/docs/PlaylistApi.md +221 -0
  36. data/docs/PlaylistLargeDTO.md +38 -0
  37. data/docs/ProductMediumDTO.md +34 -0
  38. data/docs/ProductPartyDTO.md +20 -0
  39. data/docs/RecordingApi.md +789 -0
  40. data/docs/RecordingForSimilaritySearchDTO.md +20 -0
  41. data/docs/RecordingGenrePredictionDTO.md +22 -0
  42. data/docs/RecordingLargeDTO.md +40 -0
  43. data/docs/RecordingListDTO.md +24 -0
  44. data/docs/RecordingMediumDTO.md +36 -0
  45. data/docs/RecordingMinimalWithMusicalFeaturesDTO.md +20 -0
  46. data/docs/RecordingMinimalWithTaggramsDTO.md +22 -0
  47. data/docs/RecordingMinimalWithTagstrengthsDTO.md +20 -0
  48. data/docs/RecordingPartyDTO.md +20 -0
  49. data/docs/RecordingPlaylistDTO.md +24 -0
  50. data/docs/RecordingSmallDTO.md +24 -0
  51. data/docs/RecordingTagSmallDTO.md +18 -0
  52. data/docs/SaveFileRecordingDTO.md +236 -0
  53. data/docs/SavePlaylistDTO.md +34 -0
  54. data/docs/SaveRecordingGenreDTO.md +22 -0
  55. data/docs/SaveRecordingPartyDTO.md +20 -0
  56. data/docs/SaveRecordingPlaylistDTO.md +22 -0
  57. data/docs/SaveRecordingTagDTO.md +20 -0
  58. data/docs/SaveReferrerDTO.md +20 -0
  59. data/docs/SaveTaggramsDTO.md +82 -0
  60. data/docs/SaveUserDTO.md +28 -0
  61. data/docs/SearchFilterValuesDTO.md +98 -0
  62. data/docs/SearchRecordingGranularAbstractionDTO.md +20 -0
  63. data/docs/SearchRecordingGranularDTO.md +22 -0
  64. data/docs/SignUpDTO.md +24 -0
  65. data/docs/TagDTO.md +22 -0
  66. data/docs/TagSmallDTO.md +20 -0
  67. data/docs/TaggramDTO.md +26 -0
  68. data/docs/TagsSummaryDTO.md +22 -0
  69. data/docs/TagstrengthDTO.md +26 -0
  70. data/docs/TitleDTO.md +18 -0
  71. data/docs/TokenRequest.md +18 -0
  72. data/docs/TrackToMediumProductDTO.md +22 -0
  73. data/docs/UpdatePasswordDTO.md +20 -0
  74. data/docs/UsageDTO.md +18 -0
  75. data/docs/UserApi.md +1936 -0
  76. data/docs/UserDTO.md +56 -0
  77. data/git_push.sh +57 -0
  78. data/lib/musicube_api_client_ruby/api/allowed_values_api.rb +213 -0
  79. data/lib/musicube_api_client_ruby/api/party_api.rb +84 -0
  80. data/lib/musicube_api_client_ruby/api/playlist_api.rb +222 -0
  81. data/lib/musicube_api_client_ruby/api/recording_api.rb +900 -0
  82. data/lib/musicube_api_client_ruby/api/user_api.rb +2642 -0
  83. data/lib/musicube_api_client_ruby/api_client.rb +428 -0
  84. data/lib/musicube_api_client_ruby/api_error.rb +58 -0
  85. data/lib/musicube_api_client_ruby/configuration.rb +380 -0
  86. data/lib/musicube_api_client_ruby/models/category_medium_dto.rb +250 -0
  87. data/lib/musicube_api_client_ruby/models/category_minimal_dto.rb +225 -0
  88. data/lib/musicube_api_client_ruby/models/config_access_dto.rb +287 -0
  89. data/lib/musicube_api_client_ruby/models/config_identifier_dto.rb +239 -0
  90. data/lib/musicube_api_client_ruby/models/contributor_type_dto.rb +225 -0
  91. data/lib/musicube_api_client_ruby/models/error_response.rb +276 -0
  92. data/lib/musicube_api_client_ruby/models/field_summary_dto.rb +253 -0
  93. data/lib/musicube_api_client_ruby/models/file_dto.rb +450 -0
  94. data/lib/musicube_api_client_ruby/models/file_list_dto.rb +269 -0
  95. data/lib/musicube_api_client_ruby/models/file_minimal_with_url_dto.rb +253 -0
  96. data/lib/musicube_api_client_ruby/models/file_small_dto.rb +432 -0
  97. data/lib/musicube_api_client_ruby/models/file_upload_dto.rb +244 -0
  98. data/lib/musicube_api_client_ruby/models/file_w_ith_url_dto.rb +239 -0
  99. data/lib/musicube_api_client_ruby/models/files_summary_dto.rb +287 -0
  100. data/lib/musicube_api_client_ruby/models/forgot_password_dto.rb +267 -0
  101. data/lib/musicube_api_client_ruby/models/genre_dto.rb +239 -0
  102. data/lib/musicube_api_client_ruby/models/genre_minimal_dto.rb +225 -0
  103. data/lib/musicube_api_client_ruby/models/genres_summary_dto.rb +248 -0
  104. data/lib/musicube_api_client_ruby/models/init_put_recording_audio_dto.rb +238 -0
  105. data/lib/musicube_api_client_ruby/models/jwt_token_dto.rb +248 -0
  106. data/lib/musicube_api_client_ruby/models/login_dto.rb +257 -0
  107. data/lib/musicube_api_client_ruby/models/musical_features_dto.rb +1532 -0
  108. data/lib/musicube_api_client_ruby/models/p_line_dto.rb +234 -0
  109. data/lib/musicube_api_client_ruby/models/party_large_dto.rb +288 -0
  110. data/lib/musicube_api_client_ruby/models/party_small_dto.rb +239 -0
  111. data/lib/musicube_api_client_ruby/models/playlist_large_dto.rb +353 -0
  112. data/lib/musicube_api_client_ruby/models/product_medium_dto.rb +316 -0
  113. data/lib/musicube_api_client_ruby/models/product_party_dto.rb +236 -0
  114. data/lib/musicube_api_client_ruby/models/recording_for_similarity_search_dto.rb +239 -0
  115. data/lib/musicube_api_client_ruby/models/recording_genre_prediction_dto.rb +253 -0
  116. data/lib/musicube_api_client_ruby/models/recording_large_dto.rb +366 -0
  117. data/lib/musicube_api_client_ruby/models/recording_list_dto.rb +269 -0
  118. data/lib/musicube_api_client_ruby/models/recording_medium_dto.rb +340 -0
  119. data/lib/musicube_api_client_ruby/models/recording_minimal_with_musical_features_dto.rb +236 -0
  120. data/lib/musicube_api_client_ruby/models/recording_minimal_with_taggrams_dto.rb +248 -0
  121. data/lib/musicube_api_client_ruby/models/recording_minimal_with_tagstrengths_dto.rb +236 -0
  122. data/lib/musicube_api_client_ruby/models/recording_party_dto.rb +236 -0
  123. data/lib/musicube_api_client_ruby/models/recording_playlist_dto.rb +247 -0
  124. data/lib/musicube_api_client_ruby/models/recording_small_dto.rb +268 -0
  125. data/lib/musicube_api_client_ruby/models/recording_tag_small_dto.rb +225 -0
  126. data/lib/musicube_api_client_ruby/models/save_file_recording_dto.rb +1847 -0
  127. data/lib/musicube_api_client_ruby/models/save_playlist_dto.rb +350 -0
  128. data/lib/musicube_api_client_ruby/models/save_recording_genre_dto.rb +243 -0
  129. data/lib/musicube_api_client_ruby/models/save_recording_party_dto.rb +273 -0
  130. data/lib/musicube_api_client_ruby/models/save_recording_playlist_dto.rb +248 -0
  131. data/lib/musicube_api_client_ruby/models/save_recording_tag_dto.rb +234 -0
  132. data/lib/musicube_api_client_ruby/models/save_referrer_dto.rb +229 -0
  133. data/lib/musicube_api_client_ruby/models/save_taggrams_dto.rb +574 -0
  134. data/lib/musicube_api_client_ruby/models/save_user_dto.rb +317 -0
  135. data/lib/musicube_api_client_ruby/models/search_filter_values_dto.rb +867 -0
  136. data/lib/musicube_api_client_ruby/models/search_recording_granular_abstraction_dto.rb +270 -0
  137. data/lib/musicube_api_client_ruby/models/search_recording_granular_dto.rb +245 -0
  138. data/lib/musicube_api_client_ruby/models/sign_up_dto.rb +262 -0
  139. data/lib/musicube_api_client_ruby/models/tag_dto.rb +250 -0
  140. data/lib/musicube_api_client_ruby/models/tag_small_dto.rb +239 -0
  141. data/lib/musicube_api_client_ruby/models/taggram_dto.rb +271 -0
  142. data/lib/musicube_api_client_ruby/models/tags_summary_dto.rb +250 -0
  143. data/lib/musicube_api_client_ruby/models/tagstrength_dto.rb +269 -0
  144. data/lib/musicube_api_client_ruby/models/title_dto.rb +225 -0
  145. data/lib/musicube_api_client_ruby/models/token_request.rb +224 -0
  146. data/lib/musicube_api_client_ruby/models/track_to_medium_product_dto.rb +248 -0
  147. data/lib/musicube_api_client_ruby/models/update_password_dto.rb +238 -0
  148. data/lib/musicube_api_client_ruby/models/usage_dto.rb +220 -0
  149. data/lib/musicube_api_client_ruby/models/user_dto.rb +481 -0
  150. data/lib/musicube_api_client_ruby/version.rb +15 -0
  151. data/lib/musicube_api_client_ruby.rb +108 -0
  152. data/musicube_api_client_ruby.gemspec +39 -0
  153. data/openapi-generator-config.yaml +9 -0
  154. data/spec/api/allowed_values_api_spec.rb +68 -0
  155. data/spec/api/party_api_spec.rb +46 -0
  156. data/spec/api/playlist_api_spec.rb +72 -0
  157. data/spec/api/recording_api_spec.rb +192 -0
  158. data/spec/api/user_api_spec.rb +507 -0
  159. data/spec/api_client_spec.rb +223 -0
  160. data/spec/configuration_spec.rb +82 -0
  161. data/spec/models/category_medium_dto_spec.rb +46 -0
  162. data/spec/models/category_minimal_dto_spec.rb +34 -0
  163. data/spec/models/config_access_dto_spec.rb +48 -0
  164. data/spec/models/config_identifier_dto_spec.rb +40 -0
  165. data/spec/models/contributor_type_dto_spec.rb +34 -0
  166. data/spec/models/error_response_spec.rb +58 -0
  167. data/spec/models/field_summary_dto_spec.rb +46 -0
  168. data/spec/models/file_dto_spec.rb +142 -0
  169. data/spec/models/file_list_dto_spec.rb +52 -0
  170. data/spec/models/file_minimal_with_url_dto_spec.rb +46 -0
  171. data/spec/models/file_small_dto_spec.rb +130 -0
  172. data/spec/models/file_upload_dto_spec.rb +46 -0
  173. data/spec/models/file_w_ith_url_dto_spec.rb +40 -0
  174. data/spec/models/files_summary_dto_spec.rb +70 -0
  175. data/spec/models/forgot_password_dto_spec.rb +44 -0
  176. data/spec/models/genre_dto_spec.rb +40 -0
  177. data/spec/models/genre_minimal_dto_spec.rb +34 -0
  178. data/spec/models/genres_summary_dto_spec.rb +46 -0
  179. data/spec/models/init_put_recording_audio_dto_spec.rb +46 -0
  180. data/spec/models/jwt_token_dto_spec.rb +46 -0
  181. data/spec/models/login_dto_spec.rb +52 -0
  182. data/spec/models/musical_features_dto_spec.rb +706 -0
  183. data/spec/models/p_line_dto_spec.rb +40 -0
  184. data/spec/models/party_large_dto_spec.rb +76 -0
  185. data/spec/models/party_small_dto_spec.rb +40 -0
  186. data/spec/models/playlist_large_dto_spec.rb +98 -0
  187. data/spec/models/product_medium_dto_spec.rb +82 -0
  188. data/spec/models/product_party_dto_spec.rb +40 -0
  189. data/spec/models/recording_for_similarity_search_dto_spec.rb +40 -0
  190. data/spec/models/recording_genre_prediction_dto_spec.rb +46 -0
  191. data/spec/models/recording_large_dto_spec.rb +100 -0
  192. data/spec/models/recording_list_dto_spec.rb +52 -0
  193. data/spec/models/recording_medium_dto_spec.rb +88 -0
  194. data/spec/models/recording_minimal_with_musical_features_dto_spec.rb +40 -0
  195. data/spec/models/recording_minimal_with_taggrams_dto_spec.rb +46 -0
  196. data/spec/models/recording_minimal_with_tagstrengths_dto_spec.rb +40 -0
  197. data/spec/models/recording_party_dto_spec.rb +40 -0
  198. data/spec/models/recording_playlist_dto_spec.rb +52 -0
  199. data/spec/models/recording_small_dto_spec.rb +52 -0
  200. data/spec/models/recording_tag_small_dto_spec.rb +34 -0
  201. data/spec/models/save_file_recording_dto_spec.rb +880 -0
  202. data/spec/models/save_playlist_dto_spec.rb +86 -0
  203. data/spec/models/save_recording_genre_dto_spec.rb +46 -0
  204. data/spec/models/save_recording_party_dto_spec.rb +44 -0
  205. data/spec/models/save_recording_playlist_dto_spec.rb +46 -0
  206. data/spec/models/save_recording_tag_dto_spec.rb +40 -0
  207. data/spec/models/save_referrer_dto_spec.rb +40 -0
  208. data/spec/models/save_taggrams_dto_spec.rb +226 -0
  209. data/spec/models/save_user_dto_spec.rb +72 -0
  210. data/spec/models/search_filter_values_dto_spec.rb +274 -0
  211. data/spec/models/search_recording_granular_abstraction_dto_spec.rb +44 -0
  212. data/spec/models/search_recording_granular_dto_spec.rb +46 -0
  213. data/spec/models/sign_up_dto_spec.rb +52 -0
  214. data/spec/models/tag_dto_spec.rb +46 -0
  215. data/spec/models/tag_small_dto_spec.rb +40 -0
  216. data/spec/models/taggram_dto_spec.rb +58 -0
  217. data/spec/models/tags_summary_dto_spec.rb +46 -0
  218. data/spec/models/tagstrength_dto_spec.rb +58 -0
  219. data/spec/models/title_dto_spec.rb +34 -0
  220. data/spec/models/token_request_spec.rb +34 -0
  221. data/spec/models/track_to_medium_product_dto_spec.rb +46 -0
  222. data/spec/models/update_password_dto_spec.rb +40 -0
  223. data/spec/models/usage_dto_spec.rb +34 -0
  224. data/spec/models/user_dto_spec.rb +148 -0
  225. data/spec/musicube_api_client_ruby_spec.rb +11 -0
  226. data/spec/spec_helper.rb +111 -0
  227. metadata +415 -0
@@ -0,0 +1,82 @@
1
+ # MusicubeApiClientRuby::SaveTaggramsDTO
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **timestamps** | **Array<Float>** | | [optional] |
8
+ | **level1_genre** | **Hash<String, Array<Float>>** | | [optional] |
9
+ | **level2_genre** | **Hash<String, Array<Float>>** | | [optional] |
10
+ | **song_rating** | **Hash<String, Array<Float>>** | | [optional] |
11
+ | **performance_rating** | **Hash<String, Array<Float>>** | | [optional] |
12
+ | **production_rating** | **Hash<String, Array<Float>>** | | [optional] |
13
+ | **mood_cluster** | **Hash<String, Array<Float>>** | | [optional] |
14
+ | **vocals** | **Hash<String, Array<Float>>** | | [optional] |
15
+ | **dominant_instrument** | **Hash<String, Array<Float>>** | | [optional] |
16
+ | **sound_generation** | **Hash<String, Array<Float>>** | | [optional] |
17
+ | **rhythm** | **Hash<String, Array<Float>>** | | [optional] |
18
+ | **tonality** | **Hash<String, Array<Float>>** | | [optional] |
19
+ | **audience_age** | **Hash<String, Array<Float>>** | | [optional] |
20
+ | **audience_gender** | **Hash<String, Array<Float>>** | | [optional] |
21
+ | **audience_region** | **Hash<String, Array<Float>>** | | [optional] |
22
+ | **origin_region** | **Hash<String, Array<Float>>** | | [optional] |
23
+ | **origin_decade** | **Hash<String, Array<Float>>** | | [optional] |
24
+ | **language_of_performance** | **Hash<String, Array<Float>>** | | [optional] |
25
+ | **arousal** | **Hash<String, Array<Float>>** | | [optional] |
26
+ | **valence** | **Hash<String, Array<Float>>** | | [optional] |
27
+ | **pleasantness** | **Hash<String, Array<Float>>** | | [optional] |
28
+ | **engagement** | **Hash<String, Array<Float>>** | | [optional] |
29
+ | **energy** | **Hash<String, Array<Float>>** | | [optional] |
30
+ | **timbre** | **Hash<String, Array<Float>>** | | [optional] |
31
+ | **roughness** | **Hash<String, Array<Float>>** | | [optional] |
32
+ | **harmony** | **Hash<String, Array<Float>>** | | [optional] |
33
+ | **texture** | **Hash<String, Array<Float>>** | | [optional] |
34
+ | **groovyness** | **Hash<String, Array<Float>>** | | [optional] |
35
+ | **space** | **Hash<String, Array<Float>>** | | [optional] |
36
+ | **curateability** | **Hash<String, Array<Float>>** | | [optional] |
37
+ | **use_case** | **Hash<String, Array<Float>>** | | [optional] |
38
+ | **social_media** | **Hash<String, Array<Float>>** | | [optional] |
39
+ | **industry_suitability** | **Hash<String, Array<Float>>** | | [optional] |
40
+
41
+ ## Example
42
+
43
+ ```ruby
44
+ require 'musicube_api_client_ruby'
45
+
46
+ instance = MusicubeApiClientRuby::SaveTaggramsDTO.new(
47
+ timestamps: null,
48
+ level1_genre: null,
49
+ level2_genre: null,
50
+ song_rating: null,
51
+ performance_rating: null,
52
+ production_rating: null,
53
+ mood_cluster: null,
54
+ vocals: null,
55
+ dominant_instrument: null,
56
+ sound_generation: null,
57
+ rhythm: null,
58
+ tonality: null,
59
+ audience_age: null,
60
+ audience_gender: null,
61
+ audience_region: null,
62
+ origin_region: null,
63
+ origin_decade: null,
64
+ language_of_performance: null,
65
+ arousal: null,
66
+ valence: null,
67
+ pleasantness: null,
68
+ engagement: null,
69
+ energy: null,
70
+ timbre: null,
71
+ roughness: null,
72
+ harmony: null,
73
+ texture: null,
74
+ groovyness: null,
75
+ space: null,
76
+ curateability: null,
77
+ use_case: null,
78
+ social_media: null,
79
+ industry_suitability: null
80
+ )
81
+ ```
82
+
@@ -0,0 +1,28 @@
1
+ # MusicubeApiClientRuby::SaveUserDTO
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **system** | **String** | | [optional] |
8
+ | **email_address** | **String** | | |
9
+ | **password** | **String** | | [optional] |
10
+ | **full_name** | **String** | | [optional] |
11
+ | **company_name** | **String** | | [optional] |
12
+ | **language** | **String** | Current status of the recording. | [optional] |
13
+
14
+ ## Example
15
+
16
+ ```ruby
17
+ require 'musicube_api_client_ruby'
18
+
19
+ instance = MusicubeApiClientRuby::SaveUserDTO.new(
20
+ system: null,
21
+ email_address: null,
22
+ password: null,
23
+ full_name: null,
24
+ company_name: null,
25
+ language: null
26
+ )
27
+ ```
28
+
@@ -0,0 +1,98 @@
1
+ # MusicubeApiClientRuby::SearchFilterValuesDTO
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **primary_mood_cluster** | **Array<String>** | | |
8
+ | **secondary_mood_cluster** | **Array<String>** | | |
9
+ | **tertiary_mood_cluster** | **Array<String>** | | |
10
+ | **valence** | **Array<String>** | | |
11
+ | **arousal** | **Array<String>** | | |
12
+ | **pleasantness** | **Array<String>** | | |
13
+ | **engagement** | **Array<String>** | | |
14
+ | **vocals** | **Array<String>** | | |
15
+ | **dominant_instrument** | **Array<String>** | | |
16
+ | **secondary_instrument** | **Array<String>** | | |
17
+ | **tertiary_instrument** | **Array<String>** | | |
18
+ | **energy** | **Array<String>** | | |
19
+ | **sound_generation** | **Array<String>** | | |
20
+ | **tempo** | **Array<String>** | | |
21
+ | **scale** | **Array<String>** | | |
22
+ | **key** | **Array<String>** | | |
23
+ | **rhythm** | **Array<String>** | | |
24
+ | **primary_sound_character** | **Array<String>** | | |
25
+ | **timbre** | **Array<String>** | | |
26
+ | **roughness** | **Array<String>** | | |
27
+ | **tonality** | **Array<String>** | | |
28
+ | **harmony** | **Array<String>** | | |
29
+ | **texture** | **Array<String>** | | |
30
+ | **groovyness** | **Array<String>** | | |
31
+ | **space** | **Array<String>** | | |
32
+ | **production_rating** | **Array<String>** | | |
33
+ | **performance_rating** | **Array<String>** | | |
34
+ | **song_rating** | **Array<String>** | | |
35
+ | **audience_age** | **Array<String>** | | |
36
+ | **secondary_audience_age** | **Array<String>** | | |
37
+ | **tertiary_audience_age** | **Array<String>** | | |
38
+ | **audience_gender** | **Array<String>** | | |
39
+ | **audience_region** | **Array<String>** | | |
40
+ | **secondary_audience_region** | **Array<String>** | | |
41
+ | **tertiary_audience_region** | **Array<String>** | | |
42
+ | **origin_decade** | **Array<String>** | | |
43
+ | **origin_region** | **Array<String>** | | |
44
+ | **language_of_performance** | **Array<String>** | | |
45
+ | **curateability** | **Array<String>** | | |
46
+ | **use_case** | **Array<String>** | | |
47
+ | **channel_suitability** | **Array<String>** | | |
48
+
49
+ ## Example
50
+
51
+ ```ruby
52
+ require 'musicube_api_client_ruby'
53
+
54
+ instance = MusicubeApiClientRuby::SearchFilterValuesDTO.new(
55
+ primary_mood_cluster: null,
56
+ secondary_mood_cluster: null,
57
+ tertiary_mood_cluster: null,
58
+ valence: null,
59
+ arousal: null,
60
+ pleasantness: null,
61
+ engagement: null,
62
+ vocals: null,
63
+ dominant_instrument: null,
64
+ secondary_instrument: null,
65
+ tertiary_instrument: null,
66
+ energy: null,
67
+ sound_generation: null,
68
+ tempo: null,
69
+ scale: null,
70
+ key: null,
71
+ rhythm: null,
72
+ primary_sound_character: null,
73
+ timbre: null,
74
+ roughness: null,
75
+ tonality: null,
76
+ harmony: null,
77
+ texture: null,
78
+ groovyness: null,
79
+ space: null,
80
+ production_rating: null,
81
+ performance_rating: null,
82
+ song_rating: null,
83
+ audience_age: null,
84
+ secondary_audience_age: null,
85
+ tertiary_audience_age: null,
86
+ audience_gender: null,
87
+ audience_region: null,
88
+ secondary_audience_region: null,
89
+ tertiary_audience_region: null,
90
+ origin_decade: null,
91
+ origin_region: null,
92
+ language_of_performance: null,
93
+ curateability: null,
94
+ use_case: null,
95
+ channel_suitability: null
96
+ )
97
+ ```
98
+
@@ -0,0 +1,20 @@
1
+ # MusicubeApiClientRuby::SearchRecordingGranularAbstractionDTO
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **strength** | **Float** | Strength of presence of the corresponding category, tag or genre. | [optional] |
8
+ | **abstraction_name** | **String** | Current status of the recording. | |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'musicube_api_client_ruby'
14
+
15
+ instance = MusicubeApiClientRuby::SearchRecordingGranularAbstractionDTO.new(
16
+ strength: null,
17
+ abstraction_name: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,22 @@
1
+ # MusicubeApiClientRuby::SearchRecordingGranularDTO
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **strength** | **Float** | Strength of presence of the corresponding category, tag or genre. | [optional] |
8
+ | **arc_type** | **Integer** | Type of a time development throughout a song. | [optional] |
9
+ | **tag_name** | **String** | | |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'musicube_api_client_ruby'
15
+
16
+ instance = MusicubeApiClientRuby::SearchRecordingGranularDTO.new(
17
+ strength: null,
18
+ arc_type: null,
19
+ tag_name: null
20
+ )
21
+ ```
22
+
data/docs/SignUpDTO.md ADDED
@@ -0,0 +1,24 @@
1
+ # MusicubeApiClientRuby::SignUpDTO
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **email_address** | **String** | | |
8
+ | **password** | **String** | | |
9
+ | **full_name** | **String** | | |
10
+ | **company_name** | **String** | | [optional] |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'musicube_api_client_ruby'
16
+
17
+ instance = MusicubeApiClientRuby::SignUpDTO.new(
18
+ email_address: null,
19
+ password: null,
20
+ full_name: null,
21
+ company_name: null
22
+ )
23
+ ```
24
+
data/docs/TagDTO.md ADDED
@@ -0,0 +1,22 @@
1
+ # MusicubeApiClientRuby::TagDTO
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **Integer** | | |
8
+ | **name** | **String** | | |
9
+ | **categories** | [**Array<CategoryMinimalDTO>**](CategoryMinimalDTO.md) | | [optional] |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'musicube_api_client_ruby'
15
+
16
+ instance = MusicubeApiClientRuby::TagDTO.new(
17
+ id: null,
18
+ name: null,
19
+ categories: null
20
+ )
21
+ ```
22
+
@@ -0,0 +1,20 @@
1
+ # MusicubeApiClientRuby::TagSmallDTO
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **Integer** | | |
8
+ | **name** | **String** | | |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'musicube_api_client_ruby'
14
+
15
+ instance = MusicubeApiClientRuby::TagSmallDTO.new(
16
+ id: null,
17
+ name: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,26 @@
1
+ # MusicubeApiClientRuby::TaggramDTO
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **timeseries** | **Array<Float>** | Values represent the strength of presence of the corresponding category, tag or genre. | |
8
+ | **category_name** | **String** | | |
9
+ | **tag_name** | **String** | | [optional] |
10
+ | **genre_name** | **String** | | [optional] |
11
+ | **scale** | **Array<Integer>** | | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'musicube_api_client_ruby'
17
+
18
+ instance = MusicubeApiClientRuby::TaggramDTO.new(
19
+ timeseries: null,
20
+ category_name: null,
21
+ tag_name: null,
22
+ genre_name: null,
23
+ scale: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,22 @@
1
+ # MusicubeApiClientRuby::TagsSummaryDTO
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **name** | **String** | | |
8
+ | **categories** | [**Array<CategoryMinimalDTO>**](CategoryMinimalDTO.md) | | [optional] |
9
+ | **total** | **Integer** | | |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'musicube_api_client_ruby'
15
+
16
+ instance = MusicubeApiClientRuby::TagsSummaryDTO.new(
17
+ name: null,
18
+ categories: null,
19
+ total: null
20
+ )
21
+ ```
22
+
@@ -0,0 +1,26 @@
1
+ # MusicubeApiClientRuby::TagstrengthDTO
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **strength** | **Float** | Strength of presence of the corresponding category, tag or genre. | |
8
+ | **category_name** | **String** | | |
9
+ | **tag_name** | **String** | | [optional] |
10
+ | **genre_name** | **String** | | [optional] |
11
+ | **scale** | **Array<Integer>** | | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'musicube_api_client_ruby'
17
+
18
+ instance = MusicubeApiClientRuby::TagstrengthDTO.new(
19
+ strength: null,
20
+ category_name: null,
21
+ tag_name: null,
22
+ genre_name: null,
23
+ scale: null
24
+ )
25
+ ```
26
+
data/docs/TitleDTO.md ADDED
@@ -0,0 +1,18 @@
1
+ # MusicubeApiClientRuby::TitleDTO
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **title_text** | **String** | | |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'musicube_api_client_ruby'
13
+
14
+ instance = MusicubeApiClientRuby::TitleDTO.new(
15
+ title_text: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,18 @@
1
+ # MusicubeApiClientRuby::TokenRequest
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **refresh_token** | **String** | | |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'musicube_api_client_ruby'
13
+
14
+ instance = MusicubeApiClientRuby::TokenRequest.new(
15
+ refresh_token: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,22 @@
1
+ # MusicubeApiClientRuby::TrackToMediumProductDTO
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **track_no** | **String** | | |
8
+ | **set_no** | **String** | | [optional] |
9
+ | **product** | [**ProductMediumDTO**](ProductMediumDTO.md) | | |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'musicube_api_client_ruby'
15
+
16
+ instance = MusicubeApiClientRuby::TrackToMediumProductDTO.new(
17
+ track_no: null,
18
+ set_no: null,
19
+ product: null
20
+ )
21
+ ```
22
+
@@ -0,0 +1,20 @@
1
+ # MusicubeApiClientRuby::UpdatePasswordDTO
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **token** | **String** | | |
8
+ | **password** | **String** | | |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'musicube_api_client_ruby'
14
+
15
+ instance = MusicubeApiClientRuby::UpdatePasswordDTO.new(
16
+ token: null,
17
+ password: null
18
+ )
19
+ ```
20
+
data/docs/UsageDTO.md ADDED
@@ -0,0 +1,18 @@
1
+ # MusicubeApiClientRuby::UsageDTO
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **name** | **String** | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'musicube_api_client_ruby'
13
+
14
+ instance = MusicubeApiClientRuby::UsageDTO.new(
15
+ name: null
16
+ )
17
+ ```
18
+