Class: TelestreamCloud::Flip::VideoUploadBody

Inherits:
Object
  • Object
show all
Defined in:
lib/telestream_cloud_flip/models/video_upload_body.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ VideoUploadBody

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 115

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}

  if attributes.has_key?(:'file_size')
    self.file_size = attributes[:'file_size']
  end

  if attributes.has_key?(:'file_name')
    self.file_name = attributes[:'file_name']
  end

  if attributes.has_key?(:'extra_files')
    if (value = attributes[:'extra_files']).is_a?(Array)
      self.extra_files = value
    end
  end

  if attributes.has_key?(:'profiles')
    self.profiles = attributes[:'profiles']
  end

  if attributes.has_key?(:'path_format')
    self.path_format = attributes[:'path_format']
  end

  if attributes.has_key?(:'payload')
    self.payload = attributes[:'payload']
  end

  if attributes.has_key?(:'extra_variables')
    if (value = attributes[:'extra_variables']).is_a?(Hash)
      self.extra_variables = value
    end
  end

  if attributes.has_key?(:'watermark_url')
    self.watermark_url = attributes[:'watermark_url']
  end

  if attributes.has_key?(:'watermark_left')
    self.watermark_left = attributes[:'watermark_left']
  end

  if attributes.has_key?(:'watermark_top')
    self.watermark_top = attributes[:'watermark_top']
  end

  if attributes.has_key?(:'watermark_right')
    self.watermark_right = attributes[:'watermark_right']
  end

  if attributes.has_key?(:'watermark_bottom')
    self.watermark_bottom = attributes[:'watermark_bottom']
  end

  if attributes.has_key?(:'watermark_width')
    self.watermark_width = attributes[:'watermark_width']
  end

  if attributes.has_key?(:'watermark_height')
    self.watermark_height = attributes[:'watermark_height']
  end

  if attributes.has_key?(:'clip_length')
    self.clip_length = attributes[:'clip_length']
  end

  if attributes.has_key?(:'clip_offset')
    self.clip_offset = attributes[:'clip_offset']
  end

  if attributes.has_key?(:'multi_chunk')
    self.multi_chunk = attributes[:'multi_chunk']
  else
    self.multi_chunk = true
  end

end

Instance Attribute Details

#clip_lengthObject

Length of the uploaded video. Should be formatted as follows: HH:MM:SS



59
60
61
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 59

def clip_length
  @clip_length
end

#clip_offsetObject

Clip starts at a specific offset.



62
63
64
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 62

def clip_offset
  @clip_offset
end

#extra_filesObject

A list of names of additional files that will be uploaded.



25
26
27
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 25

def extra_files
  @extra_files
end

#extra_variablesObject

Returns the value of attribute extra_variables.



35
36
37
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 35

def extra_variables
  @extra_variables
end

#file_nameObject

Name of the file that will be uploaded.



22
23
24
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 22

def file_name
  @file_name
end

#file_sizeObject

Size of the file that will be uploaded in ‘bytes`.



19
20
21
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 19

def file_size
  @file_size
end

#multi_chunkObject

Returns the value of attribute multi_chunk.



64
65
66
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 64

def multi_chunk
  @multi_chunk
end

#path_formatObject

Returns the value of attribute path_format.



30
31
32
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 30

def path_format
  @path_format
end

#payloadObject

Payload is an arbitrary text of length 256 or shorter that you can store along the Video. It is typically used to retain an association with one of your own DB record ID.



33
34
35
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 33

def payload
  @payload
end

#profilesObject

A comma-separated list of profile names or IDs to be used during encoding. Alternatively, specify none so no encodings will created right away.



28
29
30
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 28

def profiles
  @profiles
end

#watermark_bottomObject

Determines distance between the bottom edge of a video and the bottom edge of a watermark image. Can be specified in pixels or percents. This parameter can be set only if watermark_top is not.



50
51
52
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 50

def watermark_bottom
  @watermark_bottom
end

#watermark_heightObject

Determines width of the watermark image. Should be specified in pixels.



56
57
58
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 56

def watermark_height
  @watermark_height
end

#watermark_leftObject

Determines distance between the left edge of a video and the left edge of a watermark image. Can be specified in pixels or percents. This parameter can be set only if watermark_right is not.



41
42
43
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 41

def watermark_left
  @watermark_left
end

#watermark_rightObject

Determines distance between the right edge of a video and the right edge of a watermark image. Can be specified in pixels or percents. This parameter can be set only if watermark_left is not.



47
48
49
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 47

def watermark_right
  @watermark_right
end

#watermark_topObject

Determines distance between the top edge of a video and the top edge of a watermark image. Can be specified in pixels or percents. This parameter can be set only if watermark_bottom is not.



44
45
46
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 44

def watermark_top
  @watermark_top
end

#watermark_urlObject

URL pointing to an image that will be used asa watermark.



38
39
40
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 38

def watermark_url
  @watermark_url
end

#watermark_widthObject

Determines width of the watermark image. Should be specified in pixels.



53
54
55
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 53

def watermark_width
  @watermark_width
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 68

def self.attribute_map
  {
    :'file_size' => :'file_size',
    :'file_name' => :'file_name',
    :'extra_files' => :'extra_files',
    :'profiles' => :'profiles',
    :'path_format' => :'path_format',
    :'payload' => :'payload',
    :'extra_variables' => :'extra_variables',
    :'watermark_url' => :'watermark_url',
    :'watermark_left' => :'watermark_left',
    :'watermark_top' => :'watermark_top',
    :'watermark_right' => :'watermark_right',
    :'watermark_bottom' => :'watermark_bottom',
    :'watermark_width' => :'watermark_width',
    :'watermark_height' => :'watermark_height',
    :'clip_length' => :'clip_length',
    :'clip_offset' => :'clip_offset',
    :'multi_chunk' => :'multi_chunk'
  }
end

.swagger_typesObject

Attribute type mapping.



91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 91

def self.swagger_types
  {
    :'file_size' => :'Integer',
    :'file_name' => :'String',
    :'extra_files' => :'Array<ExtraFile>',
    :'profiles' => :'String',
    :'path_format' => :'String',
    :'payload' => :'String',
    :'extra_variables' => :'Hash<String, String>',
    :'watermark_url' => :'String',
    :'watermark_left' => :'String',
    :'watermark_top' => :'String',
    :'watermark_right' => :'String',
    :'watermark_bottom' => :'String',
    :'watermark_width' => :'String',
    :'watermark_height' => :'String',
    :'clip_length' => :'String',
    :'clip_offset' => :'String',
    :'multi_chunk' => :'BOOLEAN'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 222

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      file_size == o.file_size &&
      file_name == o.file_name &&
      extra_files == o.extra_files &&
      profiles == o.profiles &&
      path_format == o.path_format &&
      payload == o.payload &&
      extra_variables == o.extra_variables &&
      watermark_url == o.watermark_url &&
      watermark_left == o.watermark_left &&
      watermark_top == o.watermark_top &&
      watermark_right == o.watermark_right &&
      watermark_bottom == o.watermark_bottom &&
      watermark_width == o.watermark_width &&
      watermark_height == o.watermark_height &&
      clip_length == o.clip_length &&
      clip_offset == o.clip_offset &&
      multi_chunk == o.multi_chunk
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 280

def _deserialize(type, value)
  case type.to_sym
  when :DateTime
    DateTime.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value.to_s
  when :Integer
    value.to_i
  when :Float
    value.to_f
  when :BOOLEAN
    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
      true
    else
      false
    end
  when :Object
    # generic object (usually a Hash), return directly
    value
  when /\AArray<(?<inner_type>.+)>\z/
    inner_type = Regexp.last_match[:inner_type]
    value.map { |v| _deserialize(inner_type, v) }
  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
    k_type = Regexp.last_match[:k_type]
    v_type = Regexp.last_match[:v_type]
    {}.tap do |hash|
      value.each do |k, v|
        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
      end
    end
  else # model
    temp_model = TelestreamCloud::Flip.const_get(type).new
    temp_model.build_from_hash(value)
  end
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



346
347
348
349
350
351
352
353
354
355
356
357
358
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 346

def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map{ |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 259

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  self.class.swagger_types.each_pair do |key, type|
    if type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
    end # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


246
247
248
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 246

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



252
253
254
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 252

def hash
  [file_size, file_name, extra_files, profiles, path_format, payload, extra_variables, watermark_url, watermark_left, watermark_top, watermark_right, watermark_bottom, watermark_width, watermark_height, clip_length, clip_offset, multi_chunk].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



199
200
201
202
203
204
205
206
207
208
209
210
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 199

def list_invalid_properties
  invalid_properties = Array.new
  if @file_size.nil?
    invalid_properties.push("invalid value for 'file_size', file_size cannot be nil.")
  end

  if @file_name.nil?
    invalid_properties.push("invalid value for 'file_name', file_name cannot be nil.")
  end

  return invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



326
327
328
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 326

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



332
333
334
335
336
337
338
339
340
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 332

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    next if value.nil?
    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



320
321
322
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 320

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



214
215
216
217
218
# File 'lib/telestream_cloud_flip/models/video_upload_body.rb', line 214

def valid?
  return false if @file_size.nil?
  return false if @file_name.nil?
  return true
end