Class: ShopifyAPI::Country

Inherits:
Rest::Base show all
Extended by:
T::Sig
Defined in:
lib/shopify_api/rest/resources/2022_04/country.rb,
lib/shopify_api/rest/resources/2022_07/country.rb,
lib/shopify_api/rest/resources/2022_10/country.rb,
lib/shopify_api/rest/resources/2023_01/country.rb,
lib/shopify_api/rest/resources/2023_04/country.rb,
lib/shopify_api/rest/resources/2023_07/country.rb,
lib/shopify_api/rest/resources/2023_10/country.rb,
lib/shopify_api/rest/resources/2024_01/country.rb,
lib/shopify_api/rest/resources/2024_04/country.rb,
lib/shopify_api/rest/resources/2024_07/country.rb,
lib/shopify_api/rest/resources/2024_10/country.rb

Instance Attribute Summary collapse

Attributes inherited from Rest::Base

#errors, #original_state

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Rest::Base

api_call_limit, base_find, class_name, create_instance, create_instances_from_response, #delete, get_path, get_path_ids, has_many?, has_one?, inherited, json_body_name, json_response_body_names, #method_missing, next_page?, next_page_info, prev_page?, prev_page_info, primary_key, read_only_attributes, request, #respond_to_missing?, retry_request_after, #save, #save!, #to_hash

Constructor Details

#initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) ⇒ Country

Returns a new instance of Country.



19
20
21
22
23
24
25
26
27
28
# File 'lib/shopify_api/rest/resources/2022_04/country.rb', line 19

def initialize(session: ShopifyAPI::Context.active_session, from_hash: nil)

  @code = T.let(nil, T.nilable(String))
  @id = T.let(nil, T.nilable(Integer))
  @name = T.let(nil, T.nilable(String))
  @provinces = T.let(nil, T.nilable(T::Array[T.untyped]))
  @tax = T.let(nil, T.nilable(Float))

  super(session: session, from_hash: from_hash)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class ShopifyAPI::Rest::Base

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



44
45
46
# File 'lib/shopify_api/rest/resources/2022_04/country.rb', line 44

def code
  @code
end

#idObject (readonly)

Returns the value of attribute id.



46
47
48
# File 'lib/shopify_api/rest/resources/2022_04/country.rb', line 46

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



48
49
50
# File 'lib/shopify_api/rest/resources/2022_04/country.rb', line 48

def name
  @name
end

#provincesObject (readonly)

Returns the value of attribute provinces.



50
51
52
# File 'lib/shopify_api/rest/resources/2022_04/country.rb', line 50

def provinces
  @provinces
end

#taxObject (readonly)

Returns the value of attribute tax.



52
53
54
# File 'lib/shopify_api/rest/resources/2022_04/country.rb', line 52

def tax
  @tax
end

Class Method Details

.all(since_id: nil, fields: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object



102
103
104
105
106
107
108
109
110
111
112
113
114
115
# File 'lib/shopify_api/rest/resources/2022_04/country.rb', line 102

def all(
  since_id: nil,
  fields: nil,
  session: ShopifyAPI::Context.active_session,
  **kwargs
)
  response = base_find(
    session: session,
    ids: {},
    params: {since_id: since_id, fields: fields}.merge(kwargs).compact,
  )

  T.cast(response, T::Array[Country])
end

.count(session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object



123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'lib/shopify_api/rest/resources/2022_04/country.rb', line 123

def count(
  session: ShopifyAPI::Context.active_session,
  **kwargs
)
  request(
    http_method: :get,
    operation: :count,
    session: session,
    ids: {},
    params: {}.merge(kwargs).compact,
    body: {},
    entity: nil,
  )
end

.delete(id:, session: ShopifyAPI::Context.active_session) ⇒ Object



81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/shopify_api/rest/resources/2022_04/country.rb', line 81

def delete(
  id:,
  session: ShopifyAPI::Context.active_session
)
  request(
    http_method: :delete,
    operation: :delete,
    session: session,
    ids: {id: id},
    params: {},
  )
end

.find(id:, fields: nil, session: ShopifyAPI::Context.active_session) ⇒ Object



62
63
64
65
66
67
68
69
70
71
72
73
# File 'lib/shopify_api/rest/resources/2022_04/country.rb', line 62

def find(
  id:,
  fields: nil,
  session: ShopifyAPI::Context.active_session
)
  result = base_find(
    session: session,
    ids: {id: id},
    params: {fields: fields},
  )
  T.cast(result[0], T.nilable(Country))
end