Class: StackOne::Models::Operations::CrmGetContactRequest
- Inherits:
-
Object
- Object
- StackOne::Models::Operations::CrmGetContactRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/stack_one/models/operations/crm_get_contact_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(id:, x_account_id:, prefer: nil, fields_: nil, include: nil, proxy: nil, raw: nil) ⇒ CrmGetContactRequest
constructor
A new instance of CrmGetContactRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(id:, x_account_id:, prefer: nil, fields_: nil, include: nil, proxy: nil, raw: nil) ⇒ CrmGetContactRequest
Returns a new instance of CrmGetContactRequest.
31 32 33 34 35 36 37 38 39 |
# File 'lib/stack_one/models/operations/crm_get_contact_request.rb', line 31 def initialize(id:, x_account_id:, prefer: nil, fields_: nil, include: nil, proxy: nil, raw: nil) @id = id @x_account_id = x_account_id @prefer = prefer @fields_ = fields_ @include = include @proxy = proxy @raw = raw end |
Instance Method Details
#==(other) ⇒ Object
42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/stack_one/models/operations/crm_get_contact_request.rb', line 42 def ==(other) return false unless other.is_a? self.class return false unless @id == other.id return false unless @x_account_id == other.x_account_id return false unless @prefer == other.prefer return false unless @fields_ == other.fields_ return false unless @include == other.include return false unless @proxy == other.proxy return false unless @raw == other.raw true end |