Class: StackOne::Models::Operations::CrmListContactCustomFieldDefinitionsRequest
- Inherits:
-
Object
- Object
- StackOne::Models::Operations::CrmListContactCustomFieldDefinitionsRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/stack_one/models/operations/crm_list_contact_custom_field_definitions_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(x_account_id:, prefer: nil, fields_: nil, filter: nil, next_: nil, page: nil, page_size: nil, proxy: nil, raw: nil, updated_after: nil) ⇒ CrmListContactCustomFieldDefinitionsRequest
constructor
A new instance of CrmListContactCustomFieldDefinitionsRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(x_account_id:, prefer: nil, fields_: nil, filter: nil, next_: nil, page: nil, page_size: nil, proxy: nil, raw: nil, updated_after: nil) ⇒ CrmListContactCustomFieldDefinitionsRequest
Returns a new instance of CrmListContactCustomFieldDefinitionsRequest.
41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/stack_one/models/operations/crm_list_contact_custom_field_definitions_request.rb', line 41 def initialize(x_account_id:, prefer: nil, fields_: nil, filter: nil, next_: nil, page: nil, page_size: nil, proxy: nil, raw: nil, updated_after: nil) @x_account_id = x_account_id @prefer = prefer @fields_ = fields_ @filter = filter @next_ = next_ @page = page @page_size = page_size @proxy = proxy @raw = raw @updated_after = updated_after end |
Instance Method Details
#==(other) ⇒ Object
55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/stack_one/models/operations/crm_list_contact_custom_field_definitions_request.rb', line 55 def ==(other) return false unless other.is_a? self.class 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 @filter == other.filter return false unless @next_ == other.next_ return false unless @page == other.page return false unless @page_size == other.page_size return false unless @proxy == other.proxy return false unless @raw == other.raw return false unless @updated_after == other.updated_after true end |