songtradr_api_client_ruby 1.12.21
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +9 -0
- data/Gemfile.lock +76 -0
- data/README.md +223 -0
- data/Rakefile +10 -0
- data/docs/AllowedValuesApi.md +200 -0
- data/docs/CategoryMediumDTO.md +22 -0
- data/docs/CategoryMinimalDTO.md +18 -0
- data/docs/ConfigAccessDTO.md +20 -0
- data/docs/ConfigIdentifierDTO.md +20 -0
- data/docs/ContributorTypeDTO.md +18 -0
- data/docs/ErrorResponse.md +26 -0
- data/docs/FieldSummaryDTO.md +22 -0
- data/docs/FileDTO.md +50 -0
- data/docs/FileListDTO.md +24 -0
- data/docs/FileMinimalWithUrlDTO.md +22 -0
- data/docs/FileSmallDTO.md +46 -0
- data/docs/FileUploadDTO.md +22 -0
- data/docs/FileWIthUrlDTO.md +20 -0
- data/docs/FilesSummaryDTO.md +30 -0
- data/docs/ForgotPasswordDTO.md +20 -0
- data/docs/GenreDTO.md +20 -0
- data/docs/GenreMinimalDTO.md +18 -0
- data/docs/GenresSummaryDTO.md +22 -0
- data/docs/InitPutRecordingAudioDTO.md +22 -0
- data/docs/JwtTokenDTO.md +22 -0
- data/docs/LoginDTO.md +24 -0
- data/docs/MusicalFeaturesDTO.md +186 -0
- data/docs/PLineDTO.md +20 -0
- data/docs/PartyApi.md +75 -0
- data/docs/PartyLargeDTO.md +32 -0
- data/docs/PartySmallDTO.md +20 -0
- data/docs/PlaylistApi.md +221 -0
- data/docs/PlaylistLargeDTO.md +38 -0
- data/docs/ProductMediumDTO.md +34 -0
- data/docs/ProductPartyDTO.md +20 -0
- data/docs/RecordingApi.md +789 -0
- data/docs/RecordingForSimilaritySearchDTO.md +20 -0
- data/docs/RecordingGenrePredictionDTO.md +22 -0
- data/docs/RecordingLargeDTO.md +40 -0
- data/docs/RecordingListDTO.md +24 -0
- data/docs/RecordingMediumDTO.md +36 -0
- data/docs/RecordingMinimalWithMusicalFeaturesDTO.md +20 -0
- data/docs/RecordingMinimalWithTaggramsDTO.md +22 -0
- data/docs/RecordingMinimalWithTagstrengthsDTO.md +20 -0
- data/docs/RecordingPartyDTO.md +20 -0
- data/docs/RecordingPlaylistDTO.md +24 -0
- data/docs/RecordingSmallDTO.md +24 -0
- data/docs/RecordingTagSmallDTO.md +18 -0
- data/docs/SaveFileRecordingDTO.md +236 -0
- data/docs/SavePlaylistDTO.md +34 -0
- data/docs/SaveRecordingGenreDTO.md +22 -0
- data/docs/SaveRecordingPartyDTO.md +20 -0
- data/docs/SaveRecordingPlaylistDTO.md +22 -0
- data/docs/SaveRecordingTagDTO.md +20 -0
- data/docs/SaveReferrerDTO.md +20 -0
- data/docs/SaveTaggramsDTO.md +82 -0
- data/docs/SaveUserDTO.md +28 -0
- data/docs/SearchFilterValuesDTO.md +98 -0
- data/docs/SearchRecordingGranularAbstractionDTO.md +20 -0
- data/docs/SearchRecordingGranularDTO.md +20 -0
- data/docs/SignUpDTO.md +24 -0
- data/docs/TagDTO.md +22 -0
- data/docs/TagSmallDTO.md +20 -0
- data/docs/TaggramDTO.md +26 -0
- data/docs/TagsSummaryDTO.md +22 -0
- data/docs/TagstrengthDTO.md +26 -0
- data/docs/TitleDTO.md +18 -0
- data/docs/TokenRequest.md +18 -0
- data/docs/TrackToMediumProductDTO.md +22 -0
- data/docs/UpdatePasswordDTO.md +20 -0
- data/docs/UsageDTO.md +18 -0
- data/docs/UserApi.md +1936 -0
- data/docs/UserDTO.md +56 -0
- data/getspec.rb +10 -0
- data/git_push.sh +57 -0
- data/lib/songtradr_api_client_ruby/api/allowed_values_api.rb +213 -0
- data/lib/songtradr_api_client_ruby/api/party_api.rb +84 -0
- data/lib/songtradr_api_client_ruby/api/playlist_api.rb +222 -0
- data/lib/songtradr_api_client_ruby/api/recording_api.rb +900 -0
- data/lib/songtradr_api_client_ruby/api/user_api.rb +2642 -0
- data/lib/songtradr_api_client_ruby/api_client.rb +428 -0
- data/lib/songtradr_api_client_ruby/api_error.rb +58 -0
- data/lib/songtradr_api_client_ruby/configuration.rb +380 -0
- data/lib/songtradr_api_client_ruby/models/category_medium_dto.rb +250 -0
- data/lib/songtradr_api_client_ruby/models/category_minimal_dto.rb +225 -0
- data/lib/songtradr_api_client_ruby/models/config_access_dto.rb +287 -0
- data/lib/songtradr_api_client_ruby/models/config_identifier_dto.rb +239 -0
- data/lib/songtradr_api_client_ruby/models/contributor_type_dto.rb +225 -0
- data/lib/songtradr_api_client_ruby/models/error_response.rb +276 -0
- data/lib/songtradr_api_client_ruby/models/field_summary_dto.rb +253 -0
- data/lib/songtradr_api_client_ruby/models/file_dto.rb +450 -0
- data/lib/songtradr_api_client_ruby/models/file_list_dto.rb +269 -0
- data/lib/songtradr_api_client_ruby/models/file_minimal_with_url_dto.rb +253 -0
- data/lib/songtradr_api_client_ruby/models/file_small_dto.rb +432 -0
- data/lib/songtradr_api_client_ruby/models/file_upload_dto.rb +244 -0
- data/lib/songtradr_api_client_ruby/models/file_w_ith_url_dto.rb +239 -0
- data/lib/songtradr_api_client_ruby/models/files_summary_dto.rb +287 -0
- data/lib/songtradr_api_client_ruby/models/forgot_password_dto.rb +267 -0
- data/lib/songtradr_api_client_ruby/models/genre_dto.rb +239 -0
- data/lib/songtradr_api_client_ruby/models/genre_minimal_dto.rb +225 -0
- data/lib/songtradr_api_client_ruby/models/genres_summary_dto.rb +248 -0
- data/lib/songtradr_api_client_ruby/models/init_put_recording_audio_dto.rb +238 -0
- data/lib/songtradr_api_client_ruby/models/jwt_token_dto.rb +248 -0
- data/lib/songtradr_api_client_ruby/models/login_dto.rb +257 -0
- data/lib/songtradr_api_client_ruby/models/musical_features_dto.rb +1532 -0
- data/lib/songtradr_api_client_ruby/models/p_line_dto.rb +234 -0
- data/lib/songtradr_api_client_ruby/models/party_large_dto.rb +288 -0
- data/lib/songtradr_api_client_ruby/models/party_small_dto.rb +239 -0
- data/lib/songtradr_api_client_ruby/models/playlist_large_dto.rb +353 -0
- data/lib/songtradr_api_client_ruby/models/product_medium_dto.rb +316 -0
- data/lib/songtradr_api_client_ruby/models/product_party_dto.rb +236 -0
- data/lib/songtradr_api_client_ruby/models/recording_for_similarity_search_dto.rb +239 -0
- data/lib/songtradr_api_client_ruby/models/recording_genre_prediction_dto.rb +253 -0
- data/lib/songtradr_api_client_ruby/models/recording_large_dto.rb +366 -0
- data/lib/songtradr_api_client_ruby/models/recording_list_dto.rb +269 -0
- data/lib/songtradr_api_client_ruby/models/recording_medium_dto.rb +340 -0
- data/lib/songtradr_api_client_ruby/models/recording_minimal_with_musical_features_dto.rb +236 -0
- data/lib/songtradr_api_client_ruby/models/recording_minimal_with_taggrams_dto.rb +248 -0
- data/lib/songtradr_api_client_ruby/models/recording_minimal_with_tagstrengths_dto.rb +236 -0
- data/lib/songtradr_api_client_ruby/models/recording_party_dto.rb +236 -0
- data/lib/songtradr_api_client_ruby/models/recording_playlist_dto.rb +247 -0
- data/lib/songtradr_api_client_ruby/models/recording_small_dto.rb +268 -0
- data/lib/songtradr_api_client_ruby/models/recording_tag_small_dto.rb +225 -0
- data/lib/songtradr_api_client_ruby/models/save_file_recording_dto.rb +1847 -0
- data/lib/songtradr_api_client_ruby/models/save_playlist_dto.rb +350 -0
- data/lib/songtradr_api_client_ruby/models/save_recording_genre_dto.rb +243 -0
- data/lib/songtradr_api_client_ruby/models/save_recording_party_dto.rb +273 -0
- data/lib/songtradr_api_client_ruby/models/save_recording_playlist_dto.rb +248 -0
- data/lib/songtradr_api_client_ruby/models/save_recording_tag_dto.rb +234 -0
- data/lib/songtradr_api_client_ruby/models/save_referrer_dto.rb +229 -0
- data/lib/songtradr_api_client_ruby/models/save_taggrams_dto.rb +574 -0
- data/lib/songtradr_api_client_ruby/models/save_user_dto.rb +317 -0
- data/lib/songtradr_api_client_ruby/models/search_filter_values_dto.rb +867 -0
- data/lib/songtradr_api_client_ruby/models/search_recording_granular_abstraction_dto.rb +270 -0
- data/lib/songtradr_api_client_ruby/models/search_recording_granular_dto.rb +235 -0
- data/lib/songtradr_api_client_ruby/models/sign_up_dto.rb +262 -0
- data/lib/songtradr_api_client_ruby/models/tag_dto.rb +250 -0
- data/lib/songtradr_api_client_ruby/models/tag_small_dto.rb +239 -0
- data/lib/songtradr_api_client_ruby/models/taggram_dto.rb +271 -0
- data/lib/songtradr_api_client_ruby/models/tags_summary_dto.rb +250 -0
- data/lib/songtradr_api_client_ruby/models/tagstrength_dto.rb +269 -0
- data/lib/songtradr_api_client_ruby/models/title_dto.rb +225 -0
- data/lib/songtradr_api_client_ruby/models/token_request.rb +224 -0
- data/lib/songtradr_api_client_ruby/models/track_to_medium_product_dto.rb +248 -0
- data/lib/songtradr_api_client_ruby/models/update_password_dto.rb +238 -0
- data/lib/songtradr_api_client_ruby/models/usage_dto.rb +220 -0
- data/lib/songtradr_api_client_ruby/models/user_dto.rb +481 -0
- data/lib/songtradr_api_client_ruby/version.rb +15 -0
- data/lib/songtradr_api_client_ruby.rb +108 -0
- data/openapi-generator-config.yaml +10 -0
- data/songtradr_api_client_ruby.gemspec +39 -0
- data/spec/api/allowed_values_api_spec.rb +68 -0
- data/spec/api/party_api_spec.rb +46 -0
- data/spec/api/playlist_api_spec.rb +72 -0
- data/spec/api/recording_api_spec.rb +192 -0
- data/spec/api/user_api_spec.rb +507 -0
- data/spec/api_client_spec.rb +223 -0
- data/spec/configuration_spec.rb +82 -0
- data/spec/models/category_medium_dto_spec.rb +46 -0
- data/spec/models/category_minimal_dto_spec.rb +34 -0
- data/spec/models/config_access_dto_spec.rb +48 -0
- data/spec/models/config_identifier_dto_spec.rb +40 -0
- data/spec/models/contributor_type_dto_spec.rb +34 -0
- data/spec/models/error_response_spec.rb +58 -0
- data/spec/models/field_summary_dto_spec.rb +46 -0
- data/spec/models/file_dto_spec.rb +142 -0
- data/spec/models/file_list_dto_spec.rb +52 -0
- data/spec/models/file_minimal_with_url_dto_spec.rb +46 -0
- data/spec/models/file_small_dto_spec.rb +130 -0
- data/spec/models/file_upload_dto_spec.rb +46 -0
- data/spec/models/file_w_ith_url_dto_spec.rb +40 -0
- data/spec/models/files_summary_dto_spec.rb +70 -0
- data/spec/models/forgot_password_dto_spec.rb +44 -0
- data/spec/models/genre_dto_spec.rb +40 -0
- data/spec/models/genre_minimal_dto_spec.rb +34 -0
- data/spec/models/genres_summary_dto_spec.rb +46 -0
- data/spec/models/init_put_recording_audio_dto_spec.rb +46 -0
- data/spec/models/jwt_token_dto_spec.rb +46 -0
- data/spec/models/login_dto_spec.rb +52 -0
- data/spec/models/musical_features_dto_spec.rb +706 -0
- data/spec/models/p_line_dto_spec.rb +40 -0
- data/spec/models/party_large_dto_spec.rb +76 -0
- data/spec/models/party_small_dto_spec.rb +40 -0
- data/spec/models/playlist_large_dto_spec.rb +98 -0
- data/spec/models/product_medium_dto_spec.rb +82 -0
- data/spec/models/product_party_dto_spec.rb +40 -0
- data/spec/models/recording_for_similarity_search_dto_spec.rb +40 -0
- data/spec/models/recording_genre_prediction_dto_spec.rb +46 -0
- data/spec/models/recording_large_dto_spec.rb +100 -0
- data/spec/models/recording_list_dto_spec.rb +52 -0
- data/spec/models/recording_medium_dto_spec.rb +88 -0
- data/spec/models/recording_minimal_with_musical_features_dto_spec.rb +40 -0
- data/spec/models/recording_minimal_with_taggrams_dto_spec.rb +46 -0
- data/spec/models/recording_minimal_with_tagstrengths_dto_spec.rb +40 -0
- data/spec/models/recording_party_dto_spec.rb +40 -0
- data/spec/models/recording_playlist_dto_spec.rb +52 -0
- data/spec/models/recording_small_dto_spec.rb +52 -0
- data/spec/models/recording_tag_small_dto_spec.rb +34 -0
- data/spec/models/save_file_recording_dto_spec.rb +880 -0
- data/spec/models/save_playlist_dto_spec.rb +86 -0
- data/spec/models/save_recording_genre_dto_spec.rb +46 -0
- data/spec/models/save_recording_party_dto_spec.rb +44 -0
- data/spec/models/save_recording_playlist_dto_spec.rb +46 -0
- data/spec/models/save_recording_tag_dto_spec.rb +40 -0
- data/spec/models/save_referrer_dto_spec.rb +40 -0
- data/spec/models/save_taggrams_dto_spec.rb +226 -0
- data/spec/models/save_user_dto_spec.rb +72 -0
- data/spec/models/search_filter_values_dto_spec.rb +274 -0
- data/spec/models/search_recording_granular_abstraction_dto_spec.rb +44 -0
- data/spec/models/search_recording_granular_dto_spec.rb +40 -0
- data/spec/models/sign_up_dto_spec.rb +52 -0
- data/spec/models/tag_dto_spec.rb +46 -0
- data/spec/models/tag_small_dto_spec.rb +40 -0
- data/spec/models/taggram_dto_spec.rb +58 -0
- data/spec/models/tags_summary_dto_spec.rb +46 -0
- data/spec/models/tagstrength_dto_spec.rb +58 -0
- data/spec/models/title_dto_spec.rb +34 -0
- data/spec/models/token_request_spec.rb +34 -0
- data/spec/models/track_to_medium_product_dto_spec.rb +46 -0
- data/spec/models/update_password_dto_spec.rb +40 -0
- data/spec/models/usage_dto_spec.rb +34 -0
- data/spec/models/user_dto_spec.rb +148 -0
- data/spec/spec_helper.rb +111 -0
- metadata +412 -0
@@ -0,0 +1,82 @@
|
|
1
|
+
# SongtradrApiClientRuby::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 'songtradr_api_client_ruby'
|
45
|
+
|
46
|
+
instance = SongtradrApiClientRuby::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
|
+
|
data/docs/SaveUserDTO.md
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
# SongtradrApiClientRuby::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 'songtradr_api_client_ruby'
|
18
|
+
|
19
|
+
instance = SongtradrApiClientRuby::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
|
+
# SongtradrApiClientRuby::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 'songtradr_api_client_ruby'
|
53
|
+
|
54
|
+
instance = SongtradrApiClientRuby::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
|
+
# SongtradrApiClientRuby::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 'songtradr_api_client_ruby'
|
14
|
+
|
15
|
+
instance = SongtradrApiClientRuby::SearchRecordingGranularAbstractionDTO.new(
|
16
|
+
strength: null,
|
17
|
+
abstraction_name: null
|
18
|
+
)
|
19
|
+
```
|
20
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# SongtradrApiClientRuby::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
|
+
| **tag_name** | **String** | | |
|
9
|
+
|
10
|
+
## Example
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'songtradr_api_client_ruby'
|
14
|
+
|
15
|
+
instance = SongtradrApiClientRuby::SearchRecordingGranularDTO.new(
|
16
|
+
strength: null,
|
17
|
+
tag_name: null
|
18
|
+
)
|
19
|
+
```
|
20
|
+
|
data/docs/SignUpDTO.md
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# SongtradrApiClientRuby::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 'songtradr_api_client_ruby'
|
16
|
+
|
17
|
+
instance = SongtradrApiClientRuby::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
|
+
# SongtradrApiClientRuby::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 'songtradr_api_client_ruby'
|
15
|
+
|
16
|
+
instance = SongtradrApiClientRuby::TagDTO.new(
|
17
|
+
id: null,
|
18
|
+
name: null,
|
19
|
+
categories: null
|
20
|
+
)
|
21
|
+
```
|
22
|
+
|
data/docs/TagSmallDTO.md
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# SongtradrApiClientRuby::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 'songtradr_api_client_ruby'
|
14
|
+
|
15
|
+
instance = SongtradrApiClientRuby::TagSmallDTO.new(
|
16
|
+
id: null,
|
17
|
+
name: null
|
18
|
+
)
|
19
|
+
```
|
20
|
+
|
data/docs/TaggramDTO.md
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# SongtradrApiClientRuby::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 'songtradr_api_client_ruby'
|
17
|
+
|
18
|
+
instance = SongtradrApiClientRuby::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
|
+
# SongtradrApiClientRuby::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 'songtradr_api_client_ruby'
|
15
|
+
|
16
|
+
instance = SongtradrApiClientRuby::TagsSummaryDTO.new(
|
17
|
+
name: null,
|
18
|
+
categories: null,
|
19
|
+
total: null
|
20
|
+
)
|
21
|
+
```
|
22
|
+
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# SongtradrApiClientRuby::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 'songtradr_api_client_ruby'
|
17
|
+
|
18
|
+
instance = SongtradrApiClientRuby::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
|
+
# SongtradrApiClientRuby::TitleDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **title_text** | **String** | | |
|
8
|
+
|
9
|
+
## Example
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
require 'songtradr_api_client_ruby'
|
13
|
+
|
14
|
+
instance = SongtradrApiClientRuby::TitleDTO.new(
|
15
|
+
title_text: null
|
16
|
+
)
|
17
|
+
```
|
18
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# SongtradrApiClientRuby::TokenRequest
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **refresh_token** | **String** | | |
|
8
|
+
|
9
|
+
## Example
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
require 'songtradr_api_client_ruby'
|
13
|
+
|
14
|
+
instance = SongtradrApiClientRuby::TokenRequest.new(
|
15
|
+
refresh_token: null
|
16
|
+
)
|
17
|
+
```
|
18
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# SongtradrApiClientRuby::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 'songtradr_api_client_ruby'
|
15
|
+
|
16
|
+
instance = SongtradrApiClientRuby::TrackToMediumProductDTO.new(
|
17
|
+
track_no: null,
|
18
|
+
set_no: null,
|
19
|
+
product: null
|
20
|
+
)
|
21
|
+
```
|
22
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# SongtradrApiClientRuby::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 'songtradr_api_client_ruby'
|
14
|
+
|
15
|
+
instance = SongtradrApiClientRuby::UpdatePasswordDTO.new(
|
16
|
+
token: null,
|
17
|
+
password: null
|
18
|
+
)
|
19
|
+
```
|
20
|
+
|
data/docs/UsageDTO.md
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
# SongtradrApiClientRuby::UsageDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **name** | **String** | | [optional] |
|
8
|
+
|
9
|
+
## Example
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
require 'songtradr_api_client_ruby'
|
13
|
+
|
14
|
+
instance = SongtradrApiClientRuby::UsageDTO.new(
|
15
|
+
name: null
|
16
|
+
)
|
17
|
+
```
|
18
|
+
|