Class: Moov::Models::Operations::ListPartnerPricingAgreementsRequest

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

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

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

Constructor Details

#initialize(account_id:, skip: nil, count: nil, agreement_id: nil, status: nil) ⇒ ListPartnerPricingAgreementsRequest

Returns a new instance of ListPartnerPricingAgreementsRequest.



27
28
29
30
31
32
33
# File 'lib/moov/models/operations/listpartnerpricingagreements_request.rb', line 27

def initialize(account_id:, skip: nil, count: nil, agreement_id: nil, status: nil)
  @account_id = 
  @skip = skip
  @count = count
  @agreement_id = agreement_id
  @status = status
end

Instance Method Details

#==(other) ⇒ Object



36
37
38
39
40
41
42
43
44
# File 'lib/moov/models/operations/listpartnerpricingagreements_request.rb', line 36

def ==(other)
  return false unless other.is_a? self.class
  return false unless @account_id == other.
  return false unless @skip == other.skip
  return false unless @count == other.count
  return false unless @agreement_id == other.agreement_id
  return false unless @status == other.status
  true
end