Class: Moov::Models::Operations::TestEndToEndTokenRequest

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

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

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

Constructor Details

#initialize(e2_ee_token:, x_moov_version: 'v2024.01.00') ⇒ TestEndToEndTokenRequest

Returns a new instance of TestEndToEndTokenRequest.



30
31
32
33
# File 'lib/moov/models/operations/testendtoendtoken_request.rb', line 30

def initialize(e2_ee_token:, x_moov_version: 'v2024.01.00')
  @e2_ee_token = e2_ee_token
  @x_moov_version = x_moov_version
end

Instance Method Details

#==(other) ⇒ Object



36
37
38
39
40
41
# File 'lib/moov/models/operations/testendtoendtoken_request.rb', line 36

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