Class: ShopifyAPI::Province

Inherits:
Rest::Base show all
Extended by:
T::Sig
Defined in:
lib/shopify_api/rest/resources/2022_04/province.rb,
lib/shopify_api/rest/resources/2022_07/province.rb,
lib/shopify_api/rest/resources/2022_10/province.rb,
lib/shopify_api/rest/resources/2023_01/province.rb,
lib/shopify_api/rest/resources/2023_04/province.rb,
lib/shopify_api/rest/resources/2023_07/province.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

base_find, class_name, create_instance, create_instances_from_response, #delete, get_path, has_many?, has_one?, 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?, #save, #save!, #to_hash

Constructor Details

#initialize(session: ShopifyAPI::Context.active_session) ⇒ Province

Returns a new instance of Province.



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

def initialize(session: ShopifyAPI::Context.active_session)
  super(session: session)

  @code = T.let(nil, T.nilable(String))
  @country_id = T.let(nil, T.nilable(Integer))
  @id = T.let(nil, T.nilable(Integer))
  @name = T.let(nil, T.nilable(String))
  @shipping_zone_id = T.let(nil, T.nilable(Integer))
  @tax = T.let(nil, T.nilable(Float))
  @tax_name = T.let(nil, T.nilable(String))
  @tax_percentage = T.let(nil, T.nilable(Float))
  @tax_type = T.let(nil, T.nilable(String))
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.



40
41
42
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 40

def code
  @code
end

#country_idObject (readonly)

Returns the value of attribute country_id.



42
43
44
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 42

def country_id
  @country_id
end

#idObject (readonly)

Returns the value of attribute id.



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

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



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

def name
  @name
end

#shipping_zone_idObject (readonly)

Returns the value of attribute shipping_zone_id.



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

def shipping_zone_id
  @shipping_zone_id
end

#taxObject (readonly)

Returns the value of attribute tax.



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

def tax
  @tax
end

#tax_nameObject (readonly)

Returns the value of attribute tax_name.



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

def tax_name
  @tax_name
end

#tax_percentageObject (readonly)

Returns the value of attribute tax_percentage.



54
55
56
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 54

def tax_percentage
  @tax_percentage
end

#tax_typeObject (readonly)

Returns the value of attribute tax_type.



56
57
58
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 56

def tax_type
  @tax_type
end

Class Method Details

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



90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 90

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

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

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



113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 113

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

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



67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 67

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