shotstack 0.0.9 → 0.0.10
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 +5 -5
- data/README.md +17 -0
- data/lib/shotstack.rb +24 -15
- data/lib/shotstack/api/default_api.rb +131 -0
- data/lib/shotstack/api_client.rb +120 -51
- data/lib/shotstack/api_error.rb +38 -5
- data/lib/shotstack/configuration.rb +90 -3
- data/lib/shotstack/models/asset.rb +17 -0
- data/lib/shotstack/models/clip.rb +308 -0
- data/lib/shotstack/models/edit.rb +104 -45
- data/lib/shotstack/models/image_asset.rb +221 -0
- data/lib/shotstack/models/output.rb +128 -41
- data/lib/shotstack/models/queued_response.rb +110 -48
- data/lib/shotstack/models/queued_response_data.rb +105 -45
- data/lib/shotstack/models/render_response.rb +110 -48
- data/lib/shotstack/models/render_response_data.rb +172 -68
- data/lib/shotstack/models/soundtrack.rb +106 -45
- data/lib/shotstack/models/timeline.rb +101 -46
- data/lib/shotstack/models/title_asset.rb +265 -0
- data/lib/shotstack/models/track.rb +89 -33
- data/lib/shotstack/models/transition.rb +121 -42
- data/lib/shotstack/models/video_asset.rb +241 -0
- data/lib/shotstack/version.rb +13 -1
- data/shotstack.gemspec +26 -13
- metadata +38 -40
- data/lib/shotstack/api/render_api.rb +0 -137
- data/lib/shotstack/models/clips.rb +0 -147
- data/lib/shotstack/models/image_clip.rb +0 -216
- data/lib/shotstack/models/image_clip_options.rb +0 -175
- data/lib/shotstack/models/title_clip.rb +0 -216
- data/lib/shotstack/models/title_clip_options.rb +0 -194
- data/lib/shotstack/models/video_clip.rb +0 -216
- data/lib/shotstack/models/video_clip_options.rb +0 -185
- data/tags +0 -306
@@ -1,216 +0,0 @@
|
|
1
|
-
require 'date'
|
2
|
-
|
3
|
-
module Shotstack
|
4
|
-
# Model for VideoClip
|
5
|
-
class VideoClip
|
6
|
-
attr_accessor :_in
|
7
|
-
|
8
|
-
attr_accessor :options
|
9
|
-
|
10
|
-
attr_accessor :out
|
11
|
-
|
12
|
-
attr_accessor :src
|
13
|
-
|
14
|
-
attr_accessor :start
|
15
|
-
|
16
|
-
attr_accessor :transition
|
17
|
-
|
18
|
-
attr_accessor :type
|
19
|
-
|
20
|
-
# Attribute mapping from ruby-style variable name to JSON key.
|
21
|
-
def self.attribute_map
|
22
|
-
{
|
23
|
-
|
24
|
-
:'_in' => :'in',
|
25
|
-
|
26
|
-
:'options' => :'options',
|
27
|
-
|
28
|
-
:'out' => :'out',
|
29
|
-
|
30
|
-
:'src' => :'src',
|
31
|
-
|
32
|
-
:'start' => :'start',
|
33
|
-
|
34
|
-
:'transition' => :'transition',
|
35
|
-
|
36
|
-
:'type' => :'type'
|
37
|
-
|
38
|
-
}
|
39
|
-
end
|
40
|
-
|
41
|
-
# Attribute type mapping.
|
42
|
-
def self.swagger_types
|
43
|
-
{
|
44
|
-
:'_in' => :'Float',
|
45
|
-
:'options' => :'VideoClipOptions',
|
46
|
-
:'out' => :'Float',
|
47
|
-
:'src' => :'String',
|
48
|
-
:'start' => :'Float',
|
49
|
-
:'transition' => :'Transition',
|
50
|
-
:'type' => :'String'
|
51
|
-
|
52
|
-
}
|
53
|
-
end
|
54
|
-
|
55
|
-
def initialize(attributes = {})
|
56
|
-
return unless attributes.is_a?(Hash)
|
57
|
-
|
58
|
-
# convert string to symbol for hash key
|
59
|
-
attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
|
60
|
-
|
61
|
-
|
62
|
-
if attributes[:'in']
|
63
|
-
self._in = attributes[:'in']
|
64
|
-
end
|
65
|
-
|
66
|
-
if attributes[:'options']
|
67
|
-
self.options = attributes[:'options']
|
68
|
-
end
|
69
|
-
|
70
|
-
if attributes[:'out']
|
71
|
-
self.out = attributes[:'out']
|
72
|
-
end
|
73
|
-
|
74
|
-
if attributes[:'src']
|
75
|
-
self.src = attributes[:'src']
|
76
|
-
end
|
77
|
-
|
78
|
-
if attributes[:'start']
|
79
|
-
self.start = attributes[:'start']
|
80
|
-
end
|
81
|
-
|
82
|
-
if attributes[:'transition']
|
83
|
-
self.transition = attributes[:'transition']
|
84
|
-
end
|
85
|
-
|
86
|
-
if attributes[:'type']
|
87
|
-
self.type = attributes[:'type']
|
88
|
-
end
|
89
|
-
|
90
|
-
end
|
91
|
-
|
92
|
-
# Custom attribute writer method checking allowed values (enum).
|
93
|
-
def type=(type)
|
94
|
-
allowed_values = ["video"]
|
95
|
-
if type && !allowed_values.include?(type)
|
96
|
-
fail "invalid value for 'type', must be one of #{allowed_values}"
|
97
|
-
end
|
98
|
-
@type = type
|
99
|
-
end
|
100
|
-
|
101
|
-
# Check equality by comparing each attribute.
|
102
|
-
def ==(o)
|
103
|
-
return true if self.equal?(o)
|
104
|
-
self.class == o.class &&
|
105
|
-
_in == o._in &&
|
106
|
-
options == o.options &&
|
107
|
-
out == o.out &&
|
108
|
-
src == o.src &&
|
109
|
-
start == o.start &&
|
110
|
-
transition == o.transition &&
|
111
|
-
type == o.type
|
112
|
-
end
|
113
|
-
|
114
|
-
# @see the `==` method
|
115
|
-
def eql?(o)
|
116
|
-
self == o
|
117
|
-
end
|
118
|
-
|
119
|
-
# Calculate hash code according to all attributes.
|
120
|
-
def hash
|
121
|
-
[_in, options, out, src, start, transition, type].hash
|
122
|
-
end
|
123
|
-
|
124
|
-
# build the object from hash
|
125
|
-
def build_from_hash(attributes)
|
126
|
-
return nil unless attributes.is_a?(Hash)
|
127
|
-
self.class.swagger_types.each_pair do |key, type|
|
128
|
-
if type =~ /^Array<(.*)>/i
|
129
|
-
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
130
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
131
|
-
else
|
132
|
-
#TODO show warning in debug mode
|
133
|
-
end
|
134
|
-
elsif !attributes[self.class.attribute_map[key]].nil?
|
135
|
-
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
136
|
-
else
|
137
|
-
# data not found in attributes(hash), not an issue as the data can be optional
|
138
|
-
end
|
139
|
-
end
|
140
|
-
|
141
|
-
self
|
142
|
-
end
|
143
|
-
|
144
|
-
def _deserialize(type, value)
|
145
|
-
case type.to_sym
|
146
|
-
when :DateTime
|
147
|
-
DateTime.parse(value)
|
148
|
-
when :Date
|
149
|
-
Date.parse(value)
|
150
|
-
when :String
|
151
|
-
value.to_s
|
152
|
-
when :Integer
|
153
|
-
value.to_i
|
154
|
-
when :Float
|
155
|
-
value.to_f
|
156
|
-
when :BOOLEAN
|
157
|
-
if value =~ /^(true|t|yes|y|1)$/i
|
158
|
-
true
|
159
|
-
else
|
160
|
-
false
|
161
|
-
end
|
162
|
-
when /\AArray<(?<inner_type>.+)>\z/
|
163
|
-
inner_type = Regexp.last_match[:inner_type]
|
164
|
-
value.map { |v| _deserialize(inner_type, v) }
|
165
|
-
when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
|
166
|
-
k_type = Regexp.last_match[:k_type]
|
167
|
-
v_type = Regexp.last_match[:v_type]
|
168
|
-
{}.tap do |hash|
|
169
|
-
value.each do |k, v|
|
170
|
-
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
171
|
-
end
|
172
|
-
end
|
173
|
-
else # model
|
174
|
-
_model = Shotstack.const_get(type).new
|
175
|
-
_model.build_from_hash(value)
|
176
|
-
end
|
177
|
-
end
|
178
|
-
|
179
|
-
def to_s
|
180
|
-
to_hash.to_s
|
181
|
-
end
|
182
|
-
|
183
|
-
# to_body is an alias to to_body (backward compatibility))
|
184
|
-
def to_body
|
185
|
-
to_hash
|
186
|
-
end
|
187
|
-
|
188
|
-
# return the object in the form of hash
|
189
|
-
def to_hash
|
190
|
-
hash = {}
|
191
|
-
self.class.attribute_map.each_pair do |attr, param|
|
192
|
-
value = self.send(attr)
|
193
|
-
next if value.nil?
|
194
|
-
hash[param] = _to_hash(value)
|
195
|
-
end
|
196
|
-
hash
|
197
|
-
end
|
198
|
-
|
199
|
-
# Method to output non-array value in the form of hash
|
200
|
-
# For object, use to_hash. Otherwise, just return the value
|
201
|
-
def _to_hash(value)
|
202
|
-
if value.is_a?(Array)
|
203
|
-
value.compact.map{ |v| _to_hash(v) }
|
204
|
-
elsif value.is_a?(Hash)
|
205
|
-
{}.tap do |hash|
|
206
|
-
value.each { |k, v| hash[k] = _to_hash(v) }
|
207
|
-
end
|
208
|
-
elsif value.respond_to? :to_hash
|
209
|
-
value.to_hash
|
210
|
-
else
|
211
|
-
value
|
212
|
-
end
|
213
|
-
end
|
214
|
-
|
215
|
-
end
|
216
|
-
end
|
@@ -1,185 +0,0 @@
|
|
1
|
-
require 'date'
|
2
|
-
|
3
|
-
module Shotstack
|
4
|
-
# Model for VideoClipOptions
|
5
|
-
class VideoClipOptions
|
6
|
-
attr_accessor :effect
|
7
|
-
|
8
|
-
attr_accessor :filter
|
9
|
-
|
10
|
-
attr_accessor :volume
|
11
|
-
|
12
|
-
# Attribute mapping from ruby-style variable name to JSON key.
|
13
|
-
def self.attribute_map
|
14
|
-
{
|
15
|
-
|
16
|
-
:'effect' => :'effect',
|
17
|
-
|
18
|
-
:'filter' => :'filter',
|
19
|
-
|
20
|
-
:'volume' => :'volume'
|
21
|
-
|
22
|
-
}
|
23
|
-
end
|
24
|
-
|
25
|
-
# Attribute type mapping.
|
26
|
-
def self.swagger_types
|
27
|
-
{
|
28
|
-
:'effect' => :'String',
|
29
|
-
:'filter' => :'String',
|
30
|
-
:'volume' => :'Float'
|
31
|
-
|
32
|
-
}
|
33
|
-
end
|
34
|
-
|
35
|
-
def initialize(attributes = {})
|
36
|
-
return unless attributes.is_a?(Hash)
|
37
|
-
|
38
|
-
# convert string to symbol for hash key
|
39
|
-
attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
|
40
|
-
|
41
|
-
|
42
|
-
if attributes[:'effect']
|
43
|
-
self.effect = attributes[:'effect']
|
44
|
-
end
|
45
|
-
|
46
|
-
if attributes[:'filter']
|
47
|
-
self.filter = attributes[:'filter']
|
48
|
-
end
|
49
|
-
|
50
|
-
if attributes[:'volume']
|
51
|
-
self.volume = attributes[:'volume']
|
52
|
-
end
|
53
|
-
|
54
|
-
end
|
55
|
-
|
56
|
-
# Custom attribute writer method checking allowed values (enum).
|
57
|
-
def effect=(effect)
|
58
|
-
allowed_values = ["zoomIn", "zoomOut", "slideLeft", "slideRight", "slideUp", "slideDown"]
|
59
|
-
if effect && !allowed_values.include?(effect)
|
60
|
-
fail "invalid value for 'effect', must be one of #{allowed_values}"
|
61
|
-
end
|
62
|
-
@effect = effect
|
63
|
-
end
|
64
|
-
|
65
|
-
# Custom attribute writer method checking allowed values (enum).
|
66
|
-
def filter=(filter)
|
67
|
-
allowed_values = ["boost", "contrast", "darken", "greyscale", "lighten", "muted", "negative"]
|
68
|
-
if filter && !allowed_values.include?(filter)
|
69
|
-
fail "invalid value for 'filter', must be one of #{allowed_values}"
|
70
|
-
end
|
71
|
-
@filter = filter
|
72
|
-
end
|
73
|
-
|
74
|
-
# Check equality by comparing each attribute.
|
75
|
-
def ==(o)
|
76
|
-
return true if self.equal?(o)
|
77
|
-
self.class == o.class &&
|
78
|
-
effect == o.effect &&
|
79
|
-
filter == o.filter &&
|
80
|
-
volume == o.volume
|
81
|
-
end
|
82
|
-
|
83
|
-
# @see the `==` method
|
84
|
-
def eql?(o)
|
85
|
-
self == o
|
86
|
-
end
|
87
|
-
|
88
|
-
# Calculate hash code according to all attributes.
|
89
|
-
def hash
|
90
|
-
[effect, filter, volume].hash
|
91
|
-
end
|
92
|
-
|
93
|
-
# build the object from hash
|
94
|
-
def build_from_hash(attributes)
|
95
|
-
return nil unless attributes.is_a?(Hash)
|
96
|
-
self.class.swagger_types.each_pair do |key, type|
|
97
|
-
if type =~ /^Array<(.*)>/i
|
98
|
-
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
99
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
100
|
-
else
|
101
|
-
#TODO show warning in debug mode
|
102
|
-
end
|
103
|
-
elsif !attributes[self.class.attribute_map[key]].nil?
|
104
|
-
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
105
|
-
else
|
106
|
-
# data not found in attributes(hash), not an issue as the data can be optional
|
107
|
-
end
|
108
|
-
end
|
109
|
-
|
110
|
-
self
|
111
|
-
end
|
112
|
-
|
113
|
-
def _deserialize(type, value)
|
114
|
-
case type.to_sym
|
115
|
-
when :DateTime
|
116
|
-
DateTime.parse(value)
|
117
|
-
when :Date
|
118
|
-
Date.parse(value)
|
119
|
-
when :String
|
120
|
-
value.to_s
|
121
|
-
when :Integer
|
122
|
-
value.to_i
|
123
|
-
when :Float
|
124
|
-
value.to_f
|
125
|
-
when :BOOLEAN
|
126
|
-
if value =~ /^(true|t|yes|y|1)$/i
|
127
|
-
true
|
128
|
-
else
|
129
|
-
false
|
130
|
-
end
|
131
|
-
when /\AArray<(?<inner_type>.+)>\z/
|
132
|
-
inner_type = Regexp.last_match[:inner_type]
|
133
|
-
value.map { |v| _deserialize(inner_type, v) }
|
134
|
-
when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
|
135
|
-
k_type = Regexp.last_match[:k_type]
|
136
|
-
v_type = Regexp.last_match[:v_type]
|
137
|
-
{}.tap do |hash|
|
138
|
-
value.each do |k, v|
|
139
|
-
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
140
|
-
end
|
141
|
-
end
|
142
|
-
else # model
|
143
|
-
_model = Shotstack.const_get(type).new
|
144
|
-
_model.build_from_hash(value)
|
145
|
-
end
|
146
|
-
end
|
147
|
-
|
148
|
-
def to_s
|
149
|
-
to_hash.to_s
|
150
|
-
end
|
151
|
-
|
152
|
-
# to_body is an alias to to_body (backward compatibility))
|
153
|
-
def to_body
|
154
|
-
to_hash
|
155
|
-
end
|
156
|
-
|
157
|
-
# return the object in the form of hash
|
158
|
-
def to_hash
|
159
|
-
hash = {}
|
160
|
-
self.class.attribute_map.each_pair do |attr, param|
|
161
|
-
value = self.send(attr)
|
162
|
-
next if value.nil?
|
163
|
-
hash[param] = _to_hash(value)
|
164
|
-
end
|
165
|
-
hash
|
166
|
-
end
|
167
|
-
|
168
|
-
# Method to output non-array value in the form of hash
|
169
|
-
# For object, use to_hash. Otherwise, just return the value
|
170
|
-
def _to_hash(value)
|
171
|
-
if value.is_a?(Array)
|
172
|
-
value.compact.map{ |v| _to_hash(v) }
|
173
|
-
elsif value.is_a?(Hash)
|
174
|
-
{}.tap do |hash|
|
175
|
-
value.each { |k, v| hash[k] = _to_hash(v) }
|
176
|
-
end
|
177
|
-
elsif value.respond_to? :to_hash
|
178
|
-
value.to_hash
|
179
|
-
else
|
180
|
-
value
|
181
|
-
end
|
182
|
-
end
|
183
|
-
|
184
|
-
end
|
185
|
-
end
|
data/tags
DELETED
@@ -1,306 +0,0 @@
|
|
1
|
-
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
|
2
|
-
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
|
3
|
-
!_TAG_OUTPUT_MODE u-ctags /u-ctags or e-ctags/
|
4
|
-
!_TAG_PROGRAM_AUTHOR Universal Ctags Team //
|
5
|
-
!_TAG_PROGRAM_NAME Universal Ctags /Derived from Exuberant Ctags/
|
6
|
-
!_TAG_PROGRAM_URL https://ctags.io/ /official site/
|
7
|
-
!_TAG_PROGRAM_VERSION 0.0.0 /befcb88/
|
8
|
-
== lib/shotstack/models/clips.rb /^ def ==(o)$/;" f class:Shotstack.Clips
|
9
|
-
== lib/shotstack/models/edit.rb /^ def ==(o)$/;" f class:Shotstack.Edit
|
10
|
-
== lib/shotstack/models/image_clip.rb /^ def ==(o)$/;" f class:Shotstack.ImageClip
|
11
|
-
== lib/shotstack/models/image_clip_options.rb /^ def ==(o)$/;" f class:Shotstack.ImageClipOptions
|
12
|
-
== lib/shotstack/models/output.rb /^ def ==(o)$/;" f class:Shotstack.Output
|
13
|
-
== lib/shotstack/models/queued_response.rb /^ def ==(o)$/;" f class:Shotstack.QueuedResponse
|
14
|
-
== lib/shotstack/models/queued_response_data.rb /^ def ==(o)$/;" f class:Shotstack.QueuedResponseData
|
15
|
-
== lib/shotstack/models/render_response.rb /^ def ==(o)$/;" f class:Shotstack.RenderResponse
|
16
|
-
== lib/shotstack/models/render_response_data.rb /^ def ==(o)$/;" f class:Shotstack.RenderResponseData
|
17
|
-
== lib/shotstack/models/soundtrack.rb /^ def ==(o)$/;" f class:Shotstack.Soundtrack
|
18
|
-
== lib/shotstack/models/timeline.rb /^ def ==(o)$/;" f class:Shotstack.Timeline
|
19
|
-
== lib/shotstack/models/title_clip.rb /^ def ==(o)$/;" f class:Shotstack.TitleClip
|
20
|
-
== lib/shotstack/models/title_clip_options.rb /^ def ==(o)$/;" f class:Shotstack.TitleClipOptions
|
21
|
-
== lib/shotstack/models/track.rb /^ def ==(o)$/;" f class:Shotstack.Track
|
22
|
-
== lib/shotstack/models/transition.rb /^ def ==(o)$/;" f class:Shotstack.Transition
|
23
|
-
== lib/shotstack/models/video_clip.rb /^ def ==(o)$/;" f class:Shotstack.VideoClip
|
24
|
-
== lib/shotstack/models/video_clip_options.rb /^ def ==(o)$/;" f class:Shotstack.VideoClipOptions
|
25
|
-
ApiClient lib/shotstack/api_client.rb /^ class ApiClient$/;" c module:Shotstack
|
26
|
-
ApiError lib/shotstack/api_error.rb /^ class ApiError < StandardError$/;" c module:Shotstack
|
27
|
-
Clips lib/shotstack/models/clips.rb /^ class Clips$/;" c module:Shotstack
|
28
|
-
Configuration lib/shotstack/configuration.rb /^ class Configuration$/;" c module:Shotstack
|
29
|
-
Edit lib/shotstack/models/edit.rb /^ class Edit$/;" c module:Shotstack
|
30
|
-
ImageClip lib/shotstack/models/image_clip.rb /^ class ImageClip$/;" c module:Shotstack
|
31
|
-
ImageClipOptions lib/shotstack/models/image_clip_options.rb /^ class ImageClipOptions$/;" c module:Shotstack
|
32
|
-
Output lib/shotstack/models/output.rb /^ class Output$/;" c module:Shotstack
|
33
|
-
QueuedResponse lib/shotstack/models/queued_response.rb /^ class QueuedResponse$/;" c module:Shotstack
|
34
|
-
QueuedResponseData lib/shotstack/models/queued_response_data.rb /^ class QueuedResponseData$/;" c module:Shotstack
|
35
|
-
RenderApi lib/shotstack/api/render_api.rb /^ class RenderApi$/;" c module:Shotstack
|
36
|
-
RenderResponse lib/shotstack/models/render_response.rb /^ class RenderResponse$/;" c module:Shotstack
|
37
|
-
RenderResponseData lib/shotstack/models/render_response_data.rb /^ class RenderResponseData$/;" c module:Shotstack
|
38
|
-
Shotstack lib/shotstack.rb /^module Shotstack$/;" m
|
39
|
-
Shotstack lib/shotstack/api/render_api.rb /^module Shotstack$/;" m
|
40
|
-
Shotstack lib/shotstack/api_client.rb /^module Shotstack$/;" m
|
41
|
-
Shotstack lib/shotstack/api_error.rb /^module Shotstack$/;" m
|
42
|
-
Shotstack lib/shotstack/configuration.rb /^module Shotstack$/;" m
|
43
|
-
Shotstack lib/shotstack/models/clips.rb /^module Shotstack$/;" m
|
44
|
-
Shotstack lib/shotstack/models/edit.rb /^module Shotstack$/;" m
|
45
|
-
Shotstack lib/shotstack/models/image_clip.rb /^module Shotstack$/;" m
|
46
|
-
Shotstack lib/shotstack/models/image_clip_options.rb /^module Shotstack$/;" m
|
47
|
-
Shotstack lib/shotstack/models/output.rb /^module Shotstack$/;" m
|
48
|
-
Shotstack lib/shotstack/models/queued_response.rb /^module Shotstack$/;" m
|
49
|
-
Shotstack lib/shotstack/models/queued_response_data.rb /^module Shotstack$/;" m
|
50
|
-
Shotstack lib/shotstack/models/render_response.rb /^module Shotstack$/;" m
|
51
|
-
Shotstack lib/shotstack/models/render_response_data.rb /^module Shotstack$/;" m
|
52
|
-
Shotstack lib/shotstack/models/soundtrack.rb /^module Shotstack$/;" m
|
53
|
-
Shotstack lib/shotstack/models/timeline.rb /^module Shotstack$/;" m
|
54
|
-
Shotstack lib/shotstack/models/title_clip.rb /^module Shotstack$/;" m
|
55
|
-
Shotstack lib/shotstack/models/title_clip_options.rb /^module Shotstack$/;" m
|
56
|
-
Shotstack lib/shotstack/models/track.rb /^module Shotstack$/;" m
|
57
|
-
Shotstack lib/shotstack/models/transition.rb /^module Shotstack$/;" m
|
58
|
-
Shotstack lib/shotstack/models/video_clip.rb /^module Shotstack$/;" m
|
59
|
-
Shotstack lib/shotstack/models/video_clip_options.rb /^module Shotstack$/;" m
|
60
|
-
Shotstack lib/shotstack/version.rb /^module Shotstack$/;" m
|
61
|
-
Shotstack Ruby SDK README.md /^# Shotstack Ruby SDK$/;" c
|
62
|
-
Soundtrack lib/shotstack/models/soundtrack.rb /^ class Soundtrack$/;" c module:Shotstack
|
63
|
-
Timeline lib/shotstack/models/timeline.rb /^ class Timeline$/;" c module:Shotstack
|
64
|
-
TitleClip lib/shotstack/models/title_clip.rb /^ class TitleClip$/;" c module:Shotstack
|
65
|
-
TitleClipOptions lib/shotstack/models/title_clip_options.rb /^ class TitleClipOptions$/;" c module:Shotstack
|
66
|
-
Track lib/shotstack/models/track.rb /^ class Track$/;" c module:Shotstack
|
67
|
-
Transition lib/shotstack/models/transition.rb /^ class Transition$/;" c module:Shotstack
|
68
|
-
VideoClip lib/shotstack/models/video_clip.rb /^ class VideoClip$/;" c module:Shotstack
|
69
|
-
VideoClipOptions lib/shotstack/models/video_clip_options.rb /^ class VideoClipOptions$/;" c module:Shotstack
|
70
|
-
_deserialize lib/shotstack/models/clips.rb /^ def _deserialize(type, value)$/;" f class:Shotstack.Clips
|
71
|
-
_deserialize lib/shotstack/models/edit.rb /^ def _deserialize(type, value)$/;" f class:Shotstack.Edit
|
72
|
-
_deserialize lib/shotstack/models/image_clip.rb /^ def _deserialize(type, value)$/;" f class:Shotstack.ImageClip
|
73
|
-
_deserialize lib/shotstack/models/image_clip_options.rb /^ def _deserialize(type, value)$/;" f class:Shotstack.ImageClipOptions
|
74
|
-
_deserialize lib/shotstack/models/output.rb /^ def _deserialize(type, value)$/;" f class:Shotstack.Output
|
75
|
-
_deserialize lib/shotstack/models/queued_response.rb /^ def _deserialize(type, value)$/;" f class:Shotstack.QueuedResponse
|
76
|
-
_deserialize lib/shotstack/models/queued_response_data.rb /^ def _deserialize(type, value)$/;" f class:Shotstack.QueuedResponseData
|
77
|
-
_deserialize lib/shotstack/models/render_response.rb /^ def _deserialize(type, value)$/;" f class:Shotstack.RenderResponse
|
78
|
-
_deserialize lib/shotstack/models/render_response_data.rb /^ def _deserialize(type, value)$/;" f class:Shotstack.RenderResponseData
|
79
|
-
_deserialize lib/shotstack/models/soundtrack.rb /^ def _deserialize(type, value)$/;" f class:Shotstack.Soundtrack
|
80
|
-
_deserialize lib/shotstack/models/timeline.rb /^ def _deserialize(type, value)$/;" f class:Shotstack.Timeline
|
81
|
-
_deserialize lib/shotstack/models/title_clip.rb /^ def _deserialize(type, value)$/;" f class:Shotstack.TitleClip
|
82
|
-
_deserialize lib/shotstack/models/title_clip_options.rb /^ def _deserialize(type, value)$/;" f class:Shotstack.TitleClipOptions
|
83
|
-
_deserialize lib/shotstack/models/track.rb /^ def _deserialize(type, value)$/;" f class:Shotstack.Track
|
84
|
-
_deserialize lib/shotstack/models/transition.rb /^ def _deserialize(type, value)$/;" f class:Shotstack.Transition
|
85
|
-
_deserialize lib/shotstack/models/video_clip.rb /^ def _deserialize(type, value)$/;" f class:Shotstack.VideoClip
|
86
|
-
_deserialize lib/shotstack/models/video_clip_options.rb /^ def _deserialize(type, value)$/;" f class:Shotstack.VideoClipOptions
|
87
|
-
_in= lib/shotstack/models/transition.rb /^ def _in=(_in)$/;" f class:Shotstack.Transition
|
88
|
-
_to_hash lib/shotstack/models/clips.rb /^ def _to_hash(value)$/;" f class:Shotstack.Clips
|
89
|
-
_to_hash lib/shotstack/models/edit.rb /^ def _to_hash(value)$/;" f class:Shotstack.Edit
|
90
|
-
_to_hash lib/shotstack/models/image_clip.rb /^ def _to_hash(value)$/;" f class:Shotstack.ImageClip
|
91
|
-
_to_hash lib/shotstack/models/image_clip_options.rb /^ def _to_hash(value)$/;" f class:Shotstack.ImageClipOptions
|
92
|
-
_to_hash lib/shotstack/models/output.rb /^ def _to_hash(value)$/;" f class:Shotstack.Output
|
93
|
-
_to_hash lib/shotstack/models/queued_response.rb /^ def _to_hash(value)$/;" f class:Shotstack.QueuedResponse
|
94
|
-
_to_hash lib/shotstack/models/queued_response_data.rb /^ def _to_hash(value)$/;" f class:Shotstack.QueuedResponseData
|
95
|
-
_to_hash lib/shotstack/models/render_response.rb /^ def _to_hash(value)$/;" f class:Shotstack.RenderResponse
|
96
|
-
_to_hash lib/shotstack/models/render_response_data.rb /^ def _to_hash(value)$/;" f class:Shotstack.RenderResponseData
|
97
|
-
_to_hash lib/shotstack/models/soundtrack.rb /^ def _to_hash(value)$/;" f class:Shotstack.Soundtrack
|
98
|
-
_to_hash lib/shotstack/models/timeline.rb /^ def _to_hash(value)$/;" f class:Shotstack.Timeline
|
99
|
-
_to_hash lib/shotstack/models/title_clip.rb /^ def _to_hash(value)$/;" f class:Shotstack.TitleClip
|
100
|
-
_to_hash lib/shotstack/models/title_clip_options.rb /^ def _to_hash(value)$/;" f class:Shotstack.TitleClipOptions
|
101
|
-
_to_hash lib/shotstack/models/track.rb /^ def _to_hash(value)$/;" f class:Shotstack.Track
|
102
|
-
_to_hash lib/shotstack/models/transition.rb /^ def _to_hash(value)$/;" f class:Shotstack.Transition
|
103
|
-
_to_hash lib/shotstack/models/video_clip.rb /^ def _to_hash(value)$/;" f class:Shotstack.VideoClip
|
104
|
-
_to_hash lib/shotstack/models/video_clip_options.rb /^ def _to_hash(value)$/;" f class:Shotstack.VideoClipOptions
|
105
|
-
api_key_with_prefix lib/shotstack/configuration.rb /^ def api_key_with_prefix(param_name)$/;" f class:Shotstack.Configuration
|
106
|
-
attribute_map lib/shotstack/models/clips.rb /^ def self.attribute_map$/;" S class:Shotstack.Clips
|
107
|
-
attribute_map lib/shotstack/models/edit.rb /^ def self.attribute_map$/;" S class:Shotstack.Edit
|
108
|
-
attribute_map lib/shotstack/models/image_clip.rb /^ def self.attribute_map$/;" S class:Shotstack.ImageClip
|
109
|
-
attribute_map lib/shotstack/models/image_clip_options.rb /^ def self.attribute_map$/;" S class:Shotstack.ImageClipOptions
|
110
|
-
attribute_map lib/shotstack/models/output.rb /^ def self.attribute_map$/;" S class:Shotstack.Output
|
111
|
-
attribute_map lib/shotstack/models/queued_response.rb /^ def self.attribute_map$/;" S class:Shotstack.QueuedResponse
|
112
|
-
attribute_map lib/shotstack/models/queued_response_data.rb /^ def self.attribute_map$/;" S class:Shotstack.QueuedResponseData
|
113
|
-
attribute_map lib/shotstack/models/render_response.rb /^ def self.attribute_map$/;" S class:Shotstack.RenderResponse
|
114
|
-
attribute_map lib/shotstack/models/render_response_data.rb /^ def self.attribute_map$/;" S class:Shotstack.RenderResponseData
|
115
|
-
attribute_map lib/shotstack/models/soundtrack.rb /^ def self.attribute_map$/;" S class:Shotstack.Soundtrack
|
116
|
-
attribute_map lib/shotstack/models/timeline.rb /^ def self.attribute_map$/;" S class:Shotstack.Timeline
|
117
|
-
attribute_map lib/shotstack/models/title_clip.rb /^ def self.attribute_map$/;" S class:Shotstack.TitleClip
|
118
|
-
attribute_map lib/shotstack/models/title_clip_options.rb /^ def self.attribute_map$/;" S class:Shotstack.TitleClipOptions
|
119
|
-
attribute_map lib/shotstack/models/track.rb /^ def self.attribute_map$/;" S class:Shotstack.Track
|
120
|
-
attribute_map lib/shotstack/models/transition.rb /^ def self.attribute_map$/;" S class:Shotstack.Transition
|
121
|
-
attribute_map lib/shotstack/models/video_clip.rb /^ def self.attribute_map$/;" S class:Shotstack.VideoClip
|
122
|
-
attribute_map lib/shotstack/models/video_clip_options.rb /^ def self.attribute_map$/;" S class:Shotstack.VideoClipOptions
|
123
|
-
auth_settings lib/shotstack/configuration.rb /^ def auth_settings$/;" f class:Shotstack.Configuration
|
124
|
-
base_path= lib/shotstack/configuration.rb /^ def base_path=(base_path)$/;" f class:Shotstack.Configuration
|
125
|
-
base_url lib/shotstack/configuration.rb /^ def base_url$/;" f class:Shotstack.Configuration
|
126
|
-
basic_auth_token lib/shotstack/configuration.rb /^ def basic_auth_token$/;" f class:Shotstack.Configuration
|
127
|
-
build_collection_param lib/shotstack/api_client.rb /^ def build_collection_param(param, collection_format)$/;" f class:Shotstack.ApiClient
|
128
|
-
build_from_hash lib/shotstack/models/clips.rb /^ def build_from_hash(attributes)$/;" f class:Shotstack.Clips
|
129
|
-
build_from_hash lib/shotstack/models/edit.rb /^ def build_from_hash(attributes)$/;" f class:Shotstack.Edit
|
130
|
-
build_from_hash lib/shotstack/models/image_clip.rb /^ def build_from_hash(attributes)$/;" f class:Shotstack.ImageClip
|
131
|
-
build_from_hash lib/shotstack/models/image_clip_options.rb /^ def build_from_hash(attributes)$/;" f class:Shotstack.ImageClipOptions
|
132
|
-
build_from_hash lib/shotstack/models/output.rb /^ def build_from_hash(attributes)$/;" f class:Shotstack.Output
|
133
|
-
build_from_hash lib/shotstack/models/queued_response.rb /^ def build_from_hash(attributes)$/;" f class:Shotstack.QueuedResponse
|
134
|
-
build_from_hash lib/shotstack/models/queued_response_data.rb /^ def build_from_hash(attributes)$/;" f class:Shotstack.QueuedResponseData
|
135
|
-
build_from_hash lib/shotstack/models/render_response.rb /^ def build_from_hash(attributes)$/;" f class:Shotstack.RenderResponse
|
136
|
-
build_from_hash lib/shotstack/models/render_response_data.rb /^ def build_from_hash(attributes)$/;" f class:Shotstack.RenderResponseData
|
137
|
-
build_from_hash lib/shotstack/models/soundtrack.rb /^ def build_from_hash(attributes)$/;" f class:Shotstack.Soundtrack
|
138
|
-
build_from_hash lib/shotstack/models/timeline.rb /^ def build_from_hash(attributes)$/;" f class:Shotstack.Timeline
|
139
|
-
build_from_hash lib/shotstack/models/title_clip.rb /^ def build_from_hash(attributes)$/;" f class:Shotstack.TitleClip
|
140
|
-
build_from_hash lib/shotstack/models/title_clip_options.rb /^ def build_from_hash(attributes)$/;" f class:Shotstack.TitleClipOptions
|
141
|
-
build_from_hash lib/shotstack/models/track.rb /^ def build_from_hash(attributes)$/;" f class:Shotstack.Track
|
142
|
-
build_from_hash lib/shotstack/models/transition.rb /^ def build_from_hash(attributes)$/;" f class:Shotstack.Transition
|
143
|
-
build_from_hash lib/shotstack/models/video_clip.rb /^ def build_from_hash(attributes)$/;" f class:Shotstack.VideoClip
|
144
|
-
build_from_hash lib/shotstack/models/video_clip_options.rb /^ def build_from_hash(attributes)$/;" f class:Shotstack.VideoClipOptions
|
145
|
-
build_request lib/shotstack/api_client.rb /^ def build_request(http_method, path, opts = {})$/;" f class:Shotstack.ApiClient
|
146
|
-
build_request_body lib/shotstack/api_client.rb /^ def build_request_body(header_params, form_params, body)$/;" f class:Shotstack.ApiClient
|
147
|
-
build_request_url lib/shotstack/api_client.rb /^ def build_request_url(path)$/;" f class:Shotstack.ApiClient
|
148
|
-
call_api lib/shotstack/api_client.rb /^ def call_api(http_method, path, opts = {})$/;" f class:Shotstack.ApiClient
|
149
|
-
configure lib/shotstack.rb /^ def configure$/;" f module:Shotstack
|
150
|
-
configure lib/shotstack/configuration.rb /^ def configure$/;" f class:Shotstack.Configuration
|
151
|
-
convert_to_type lib/shotstack/api_client.rb /^ def convert_to_type(data, return_type)$/;" f class:Shotstack.ApiClient
|
152
|
-
default lib/shotstack/api_client.rb /^ def self.default$/;" S class:Shotstack.ApiClient
|
153
|
-
default lib/shotstack/configuration.rb /^ def self.default$/;" S class:Shotstack.Configuration
|
154
|
-
deserialize lib/shotstack/api_client.rb /^ def deserialize(response, return_type)$/;" f class:Shotstack.ApiClient
|
155
|
-
download_file lib/shotstack/api_client.rb /^ def download_file(response)$/;" f class:Shotstack.ApiClient
|
156
|
-
effect= lib/shotstack/models/image_clip_options.rb /^ def effect=(effect)$/;" f class:Shotstack.ImageClipOptions
|
157
|
-
effect= lib/shotstack/models/title_clip_options.rb /^ def effect=(effect)$/;" f class:Shotstack.TitleClipOptions
|
158
|
-
effect= lib/shotstack/models/video_clip_options.rb /^ def effect=(effect)$/;" f class:Shotstack.VideoClipOptions
|
159
|
-
eql? lib/shotstack/models/clips.rb /^ def eql?(o)$/;" f class:Shotstack.Clips
|
160
|
-
eql? lib/shotstack/models/edit.rb /^ def eql?(o)$/;" f class:Shotstack.Edit
|
161
|
-
eql? lib/shotstack/models/image_clip.rb /^ def eql?(o)$/;" f class:Shotstack.ImageClip
|
162
|
-
eql? lib/shotstack/models/image_clip_options.rb /^ def eql?(o)$/;" f class:Shotstack.ImageClipOptions
|
163
|
-
eql? lib/shotstack/models/output.rb /^ def eql?(o)$/;" f class:Shotstack.Output
|
164
|
-
eql? lib/shotstack/models/queued_response.rb /^ def eql?(o)$/;" f class:Shotstack.QueuedResponse
|
165
|
-
eql? lib/shotstack/models/queued_response_data.rb /^ def eql?(o)$/;" f class:Shotstack.QueuedResponseData
|
166
|
-
eql? lib/shotstack/models/render_response.rb /^ def eql?(o)$/;" f class:Shotstack.RenderResponse
|
167
|
-
eql? lib/shotstack/models/render_response_data.rb /^ def eql?(o)$/;" f class:Shotstack.RenderResponseData
|
168
|
-
eql? lib/shotstack/models/soundtrack.rb /^ def eql?(o)$/;" f class:Shotstack.Soundtrack
|
169
|
-
eql? lib/shotstack/models/timeline.rb /^ def eql?(o)$/;" f class:Shotstack.Timeline
|
170
|
-
eql? lib/shotstack/models/title_clip.rb /^ def eql?(o)$/;" f class:Shotstack.TitleClip
|
171
|
-
eql? lib/shotstack/models/title_clip_options.rb /^ def eql?(o)$/;" f class:Shotstack.TitleClipOptions
|
172
|
-
eql? lib/shotstack/models/track.rb /^ def eql?(o)$/;" f class:Shotstack.Track
|
173
|
-
eql? lib/shotstack/models/transition.rb /^ def eql?(o)$/;" f class:Shotstack.Transition
|
174
|
-
eql? lib/shotstack/models/video_clip.rb /^ def eql?(o)$/;" f class:Shotstack.VideoClip
|
175
|
-
eql? lib/shotstack/models/video_clip_options.rb /^ def eql?(o)$/;" f class:Shotstack.VideoClipOptions
|
176
|
-
filter= lib/shotstack/models/image_clip_options.rb /^ def filter=(filter)$/;" f class:Shotstack.ImageClipOptions
|
177
|
-
filter= lib/shotstack/models/title_clip_options.rb /^ def filter=(filter)$/;" f class:Shotstack.TitleClipOptions
|
178
|
-
filter= lib/shotstack/models/video_clip_options.rb /^ def filter=(filter)$/;" f class:Shotstack.VideoClipOptions
|
179
|
-
format= lib/shotstack/models/output.rb /^ def format=(format)$/;" f class:Shotstack.Output
|
180
|
-
get_render lib/shotstack/api/render_api.rb /^ def get_render(id, opts = {})$/;" f class:Shotstack.RenderApi
|
181
|
-
get_render_with_http_info lib/shotstack/api/render_api.rb /^ def get_render_with_http_info(id, opts = {})$/;" f class:Shotstack.RenderApi
|
182
|
-
hash lib/shotstack/models/clips.rb /^ def hash$/;" f class:Shotstack.Clips
|
183
|
-
hash lib/shotstack/models/edit.rb /^ def hash$/;" f class:Shotstack.Edit
|
184
|
-
hash lib/shotstack/models/image_clip.rb /^ def hash$/;" f class:Shotstack.ImageClip
|
185
|
-
hash lib/shotstack/models/image_clip_options.rb /^ def hash$/;" f class:Shotstack.ImageClipOptions
|
186
|
-
hash lib/shotstack/models/output.rb /^ def hash$/;" f class:Shotstack.Output
|
187
|
-
hash lib/shotstack/models/queued_response.rb /^ def hash$/;" f class:Shotstack.QueuedResponse
|
188
|
-
hash lib/shotstack/models/queued_response_data.rb /^ def hash$/;" f class:Shotstack.QueuedResponseData
|
189
|
-
hash lib/shotstack/models/render_response.rb /^ def hash$/;" f class:Shotstack.RenderResponse
|
190
|
-
hash lib/shotstack/models/render_response_data.rb /^ def hash$/;" f class:Shotstack.RenderResponseData
|
191
|
-
hash lib/shotstack/models/soundtrack.rb /^ def hash$/;" f class:Shotstack.Soundtrack
|
192
|
-
hash lib/shotstack/models/timeline.rb /^ def hash$/;" f class:Shotstack.Timeline
|
193
|
-
hash lib/shotstack/models/title_clip.rb /^ def hash$/;" f class:Shotstack.TitleClip
|
194
|
-
hash lib/shotstack/models/title_clip_options.rb /^ def hash$/;" f class:Shotstack.TitleClipOptions
|
195
|
-
hash lib/shotstack/models/track.rb /^ def hash$/;" f class:Shotstack.Track
|
196
|
-
hash lib/shotstack/models/transition.rb /^ def hash$/;" f class:Shotstack.Transition
|
197
|
-
hash lib/shotstack/models/video_clip.rb /^ def hash$/;" f class:Shotstack.VideoClip
|
198
|
-
hash lib/shotstack/models/video_clip_options.rb /^ def hash$/;" f class:Shotstack.VideoClipOptions
|
199
|
-
host= lib/shotstack/configuration.rb /^ def host=(host)$/;" f class:Shotstack.Configuration
|
200
|
-
initialize lib/shotstack/api/render_api.rb /^ def initialize(api_client = ApiClient.default)$/;" f class:Shotstack.RenderApi
|
201
|
-
initialize lib/shotstack/api_client.rb /^ def initialize(config = Configuration.default)$/;" f class:Shotstack.ApiClient
|
202
|
-
initialize lib/shotstack/api_error.rb /^ def initialize(arg = nil)$/;" f class:Shotstack.ApiError
|
203
|
-
initialize lib/shotstack/configuration.rb /^ def initialize$/;" f class:Shotstack.Configuration
|
204
|
-
initialize lib/shotstack/models/clips.rb /^ def initialize(attributes = {})$/;" f class:Shotstack.Clips
|
205
|
-
initialize lib/shotstack/models/edit.rb /^ def initialize(attributes = {})$/;" f class:Shotstack.Edit
|
206
|
-
initialize lib/shotstack/models/image_clip.rb /^ def initialize(attributes = {})$/;" f class:Shotstack.ImageClip
|
207
|
-
initialize lib/shotstack/models/image_clip_options.rb /^ def initialize(attributes = {})$/;" f class:Shotstack.ImageClipOptions
|
208
|
-
initialize lib/shotstack/models/output.rb /^ def initialize(attributes = {})$/;" f class:Shotstack.Output
|
209
|
-
initialize lib/shotstack/models/queued_response.rb /^ def initialize(attributes = {})$/;" f class:Shotstack.QueuedResponse
|
210
|
-
initialize lib/shotstack/models/queued_response_data.rb /^ def initialize(attributes = {})$/;" f class:Shotstack.QueuedResponseData
|
211
|
-
initialize lib/shotstack/models/render_response.rb /^ def initialize(attributes = {})$/;" f class:Shotstack.RenderResponse
|
212
|
-
initialize lib/shotstack/models/render_response_data.rb /^ def initialize(attributes = {})$/;" f class:Shotstack.RenderResponseData
|
213
|
-
initialize lib/shotstack/models/soundtrack.rb /^ def initialize(attributes = {})$/;" f class:Shotstack.Soundtrack
|
214
|
-
initialize lib/shotstack/models/timeline.rb /^ def initialize(attributes = {})$/;" f class:Shotstack.Timeline
|
215
|
-
initialize lib/shotstack/models/title_clip.rb /^ def initialize(attributes = {})$/;" f class:Shotstack.TitleClip
|
216
|
-
initialize lib/shotstack/models/title_clip_options.rb /^ def initialize(attributes = {})$/;" f class:Shotstack.TitleClipOptions
|
217
|
-
initialize lib/shotstack/models/track.rb /^ def initialize(attributes = {})$/;" f class:Shotstack.Track
|
218
|
-
initialize lib/shotstack/models/transition.rb /^ def initialize(attributes = {})$/;" f class:Shotstack.Transition
|
219
|
-
initialize lib/shotstack/models/video_clip.rb /^ def initialize(attributes = {})$/;" f class:Shotstack.VideoClip
|
220
|
-
initialize lib/shotstack/models/video_clip_options.rb /^ def initialize(attributes = {})$/;" f class:Shotstack.VideoClipOptions
|
221
|
-
json_mime? lib/shotstack/api_client.rb /^ def json_mime?(mime)$/;" f class:Shotstack.ApiClient
|
222
|
-
object_to_hash lib/shotstack/api_client.rb /^ def object_to_hash(obj)$/;" f class:Shotstack.ApiClient
|
223
|
-
object_to_http_body lib/shotstack/api_client.rb /^ def object_to_http_body(model)$/;" f class:Shotstack.ApiClient
|
224
|
-
out= lib/shotstack/models/transition.rb /^ def out=(out)$/;" f class:Shotstack.Transition
|
225
|
-
post_render lib/shotstack/api/render_api.rb /^ def post_render(edit, opts = {})$/;" f class:Shotstack.RenderApi
|
226
|
-
post_render_with_http_info lib/shotstack/api/render_api.rb /^ def post_render_with_http_info(edit, opts = {})$/;" f class:Shotstack.RenderApi
|
227
|
-
resolution= lib/shotstack/models/output.rb /^ def resolution=(resolution)$/;" f class:Shotstack.Output
|
228
|
-
sanitize_filename lib/shotstack/api_client.rb /^ def sanitize_filename(filename)$/;" f class:Shotstack.ApiClient
|
229
|
-
scheme= lib/shotstack/configuration.rb /^ def scheme=(scheme)$/;" f class:Shotstack.Configuration
|
230
|
-
select_header_accept lib/shotstack/api_client.rb /^ def select_header_accept(accepts)$/;" f class:Shotstack.ApiClient
|
231
|
-
select_header_content_type lib/shotstack/api_client.rb /^ def select_header_content_type(content_types)$/;" f class:Shotstack.ApiClient
|
232
|
-
status= lib/shotstack/models/render_response_data.rb /^ def status=(status)$/;" f class:Shotstack.RenderResponseData
|
233
|
-
style= lib/shotstack/models/title_clip_options.rb /^ def style=(style)$/;" f class:Shotstack.TitleClipOptions
|
234
|
-
swagger_types lib/shotstack/models/clips.rb /^ def self.swagger_types$/;" S class:Shotstack.Clips
|
235
|
-
swagger_types lib/shotstack/models/edit.rb /^ def self.swagger_types$/;" S class:Shotstack.Edit
|
236
|
-
swagger_types lib/shotstack/models/image_clip.rb /^ def self.swagger_types$/;" S class:Shotstack.ImageClip
|
237
|
-
swagger_types lib/shotstack/models/image_clip_options.rb /^ def self.swagger_types$/;" S class:Shotstack.ImageClipOptions
|
238
|
-
swagger_types lib/shotstack/models/output.rb /^ def self.swagger_types$/;" S class:Shotstack.Output
|
239
|
-
swagger_types lib/shotstack/models/queued_response.rb /^ def self.swagger_types$/;" S class:Shotstack.QueuedResponse
|
240
|
-
swagger_types lib/shotstack/models/queued_response_data.rb /^ def self.swagger_types$/;" S class:Shotstack.QueuedResponseData
|
241
|
-
swagger_types lib/shotstack/models/render_response.rb /^ def self.swagger_types$/;" S class:Shotstack.RenderResponse
|
242
|
-
swagger_types lib/shotstack/models/render_response_data.rb /^ def self.swagger_types$/;" S class:Shotstack.RenderResponseData
|
243
|
-
swagger_types lib/shotstack/models/soundtrack.rb /^ def self.swagger_types$/;" S class:Shotstack.Soundtrack
|
244
|
-
swagger_types lib/shotstack/models/timeline.rb /^ def self.swagger_types$/;" S class:Shotstack.Timeline
|
245
|
-
swagger_types lib/shotstack/models/title_clip.rb /^ def self.swagger_types$/;" S class:Shotstack.TitleClip
|
246
|
-
swagger_types lib/shotstack/models/title_clip_options.rb /^ def self.swagger_types$/;" S class:Shotstack.TitleClipOptions
|
247
|
-
swagger_types lib/shotstack/models/track.rb /^ def self.swagger_types$/;" S class:Shotstack.Track
|
248
|
-
swagger_types lib/shotstack/models/transition.rb /^ def self.swagger_types$/;" S class:Shotstack.Transition
|
249
|
-
swagger_types lib/shotstack/models/video_clip.rb /^ def self.swagger_types$/;" S class:Shotstack.VideoClip
|
250
|
-
swagger_types lib/shotstack/models/video_clip_options.rb /^ def self.swagger_types$/;" S class:Shotstack.VideoClipOptions
|
251
|
-
to_body lib/shotstack/models/clips.rb /^ def to_body$/;" f class:Shotstack.Clips
|
252
|
-
to_body lib/shotstack/models/edit.rb /^ def to_body$/;" f class:Shotstack.Edit
|
253
|
-
to_body lib/shotstack/models/image_clip.rb /^ def to_body$/;" f class:Shotstack.ImageClip
|
254
|
-
to_body lib/shotstack/models/image_clip_options.rb /^ def to_body$/;" f class:Shotstack.ImageClipOptions
|
255
|
-
to_body lib/shotstack/models/output.rb /^ def to_body$/;" f class:Shotstack.Output
|
256
|
-
to_body lib/shotstack/models/queued_response.rb /^ def to_body$/;" f class:Shotstack.QueuedResponse
|
257
|
-
to_body lib/shotstack/models/queued_response_data.rb /^ def to_body$/;" f class:Shotstack.QueuedResponseData
|
258
|
-
to_body lib/shotstack/models/render_response.rb /^ def to_body$/;" f class:Shotstack.RenderResponse
|
259
|
-
to_body lib/shotstack/models/render_response_data.rb /^ def to_body$/;" f class:Shotstack.RenderResponseData
|
260
|
-
to_body lib/shotstack/models/soundtrack.rb /^ def to_body$/;" f class:Shotstack.Soundtrack
|
261
|
-
to_body lib/shotstack/models/timeline.rb /^ def to_body$/;" f class:Shotstack.Timeline
|
262
|
-
to_body lib/shotstack/models/title_clip.rb /^ def to_body$/;" f class:Shotstack.TitleClip
|
263
|
-
to_body lib/shotstack/models/title_clip_options.rb /^ def to_body$/;" f class:Shotstack.TitleClipOptions
|
264
|
-
to_body lib/shotstack/models/track.rb /^ def to_body$/;" f class:Shotstack.Track
|
265
|
-
to_body lib/shotstack/models/transition.rb /^ def to_body$/;" f class:Shotstack.Transition
|
266
|
-
to_body lib/shotstack/models/video_clip.rb /^ def to_body$/;" f class:Shotstack.VideoClip
|
267
|
-
to_body lib/shotstack/models/video_clip_options.rb /^ def to_body$/;" f class:Shotstack.VideoClipOptions
|
268
|
-
to_hash lib/shotstack/models/clips.rb /^ def to_hash$/;" f class:Shotstack.Clips
|
269
|
-
to_hash lib/shotstack/models/edit.rb /^ def to_hash$/;" f class:Shotstack.Edit
|
270
|
-
to_hash lib/shotstack/models/image_clip.rb /^ def to_hash$/;" f class:Shotstack.ImageClip
|
271
|
-
to_hash lib/shotstack/models/image_clip_options.rb /^ def to_hash$/;" f class:Shotstack.ImageClipOptions
|
272
|
-
to_hash lib/shotstack/models/output.rb /^ def to_hash$/;" f class:Shotstack.Output
|
273
|
-
to_hash lib/shotstack/models/queued_response.rb /^ def to_hash$/;" f class:Shotstack.QueuedResponse
|
274
|
-
to_hash lib/shotstack/models/queued_response_data.rb /^ def to_hash$/;" f class:Shotstack.QueuedResponseData
|
275
|
-
to_hash lib/shotstack/models/render_response.rb /^ def to_hash$/;" f class:Shotstack.RenderResponse
|
276
|
-
to_hash lib/shotstack/models/render_response_data.rb /^ def to_hash$/;" f class:Shotstack.RenderResponseData
|
277
|
-
to_hash lib/shotstack/models/soundtrack.rb /^ def to_hash$/;" f class:Shotstack.Soundtrack
|
278
|
-
to_hash lib/shotstack/models/timeline.rb /^ def to_hash$/;" f class:Shotstack.Timeline
|
279
|
-
to_hash lib/shotstack/models/title_clip.rb /^ def to_hash$/;" f class:Shotstack.TitleClip
|
280
|
-
to_hash lib/shotstack/models/title_clip_options.rb /^ def to_hash$/;" f class:Shotstack.TitleClipOptions
|
281
|
-
to_hash lib/shotstack/models/track.rb /^ def to_hash$/;" f class:Shotstack.Track
|
282
|
-
to_hash lib/shotstack/models/transition.rb /^ def to_hash$/;" f class:Shotstack.Transition
|
283
|
-
to_hash lib/shotstack/models/video_clip.rb /^ def to_hash$/;" f class:Shotstack.VideoClip
|
284
|
-
to_hash lib/shotstack/models/video_clip_options.rb /^ def to_hash$/;" f class:Shotstack.VideoClipOptions
|
285
|
-
to_s lib/shotstack/models/clips.rb /^ def to_s$/;" f class:Shotstack.Clips
|
286
|
-
to_s lib/shotstack/models/edit.rb /^ def to_s$/;" f class:Shotstack.Edit
|
287
|
-
to_s lib/shotstack/models/image_clip.rb /^ def to_s$/;" f class:Shotstack.ImageClip
|
288
|
-
to_s lib/shotstack/models/image_clip_options.rb /^ def to_s$/;" f class:Shotstack.ImageClipOptions
|
289
|
-
to_s lib/shotstack/models/output.rb /^ def to_s$/;" f class:Shotstack.Output
|
290
|
-
to_s lib/shotstack/models/queued_response.rb /^ def to_s$/;" f class:Shotstack.QueuedResponse
|
291
|
-
to_s lib/shotstack/models/queued_response_data.rb /^ def to_s$/;" f class:Shotstack.QueuedResponseData
|
292
|
-
to_s lib/shotstack/models/render_response.rb /^ def to_s$/;" f class:Shotstack.RenderResponse
|
293
|
-
to_s lib/shotstack/models/render_response_data.rb /^ def to_s$/;" f class:Shotstack.RenderResponseData
|
294
|
-
to_s lib/shotstack/models/soundtrack.rb /^ def to_s$/;" f class:Shotstack.Soundtrack
|
295
|
-
to_s lib/shotstack/models/timeline.rb /^ def to_s$/;" f class:Shotstack.Timeline
|
296
|
-
to_s lib/shotstack/models/title_clip.rb /^ def to_s$/;" f class:Shotstack.TitleClip
|
297
|
-
to_s lib/shotstack/models/title_clip_options.rb /^ def to_s$/;" f class:Shotstack.TitleClipOptions
|
298
|
-
to_s lib/shotstack/models/track.rb /^ def to_s$/;" f class:Shotstack.Track
|
299
|
-
to_s lib/shotstack/models/transition.rb /^ def to_s$/;" f class:Shotstack.Transition
|
300
|
-
to_s lib/shotstack/models/video_clip.rb /^ def to_s$/;" f class:Shotstack.VideoClip
|
301
|
-
to_s lib/shotstack/models/video_clip_options.rb /^ def to_s$/;" f class:Shotstack.VideoClipOptions
|
302
|
-
type= lib/shotstack/models/image_clip.rb /^ def type=(type)$/;" f class:Shotstack.ImageClip
|
303
|
-
type= lib/shotstack/models/title_clip.rb /^ def type=(type)$/;" f class:Shotstack.TitleClip
|
304
|
-
type= lib/shotstack/models/video_clip.rb /^ def type=(type)$/;" f class:Shotstack.VideoClip
|
305
|
-
update_params_for_auth! lib/shotstack/api_client.rb /^ def update_params_for_auth!(header_params, query_params, auth_names)$/;" f class:Shotstack.ApiClient
|
306
|
-
user_agent= lib/shotstack/api_client.rb /^ def user_agent=(user_agent)$/;" f class:Shotstack.ApiClient
|