Class: FastpixClient::Models::Operations::UpdatedMp4SupportRequestBody

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/fastpix_client/models/operations/updated_mp4support_requestbody.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

#field, #fields, included, #marshal_single, #to_dict, #to_json

Constructor Details

#initialize(mp4_support: Models::Operations::UpdatedMp4SupportMp4Support::CAPPED_4K) ⇒ UpdatedMp4SupportRequestBody

Returns a new instance of UpdatedMp4SupportRequestBody.



20
21
22
# File 'lib/fastpix_client/models/operations/updated_mp4support_requestbody.rb', line 20

def initialize(mp4_support: Models::Operations::UpdatedMp4SupportMp4Support::CAPPED_4K)
  @mp4_support = mp4_support
end

Instance Method Details

#==(other) ⇒ Object



25
26
27
28
29
# File 'lib/fastpix_client/models/operations/updated_mp4support_requestbody.rb', line 25

def ==(other)
  return false unless other.is_a? self.class
  return false unless @mp4_support == other.mp4_support
  true
end