Class: OpenApiSDK::Models::Operations::GetLinksCountRequest

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

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

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

Constructor Details

#initialize(domain: nil, tag_id: nil, tag_ids: nil, tag_names: nil, folder_id: nil, search: nil, user_id: nil, tenant_id: nil, group_by: nil, show_archived: false, with_tags: false) ⇒ GetLinksCountRequest

Returns a new instance of GetLinksCountRequest.



39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'lib/open_api_sdk/models/operations/getlinkscount_request.rb', line 39

def initialize(domain: nil, tag_id: nil, tag_ids: nil, tag_names: nil, folder_id: nil, search: nil, user_id: nil, tenant_id: nil, group_by: nil, show_archived: false, with_tags: false)
  @domain = domain
  @tag_id = tag_id
  @tag_ids = tag_ids
  @tag_names = tag_names
  @folder_id = folder_id
  @search = search
  @user_id = user_id
  @tenant_id = tenant_id
  @group_by = group_by
  @show_archived = show_archived
  @with_tags = with_tags
end

Instance Method Details

#==(other) ⇒ Object



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/open_api_sdk/models/operations/getlinkscount_request.rb', line 54

def ==(other)
  return false unless other.is_a? self.class
  return false unless @domain == other.domain
  return false unless @tag_id == other.tag_id
  return false unless @tag_ids == other.tag_ids
  return false unless @tag_names == other.tag_names
  return false unless @folder_id == other.folder_id
  return false unless @search == other.search
  return false unless @user_id == other.user_id
  return false unless @tenant_id == other.tenant_id
  return false unless @group_by == other.group_by
  return false unless @show_archived == other.show_archived
  return false unless @with_tags == other.with_tags
  true
end