Class: ShopifyAPI::ApplicationCharge

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

Returns a new instance of ApplicationCharge.



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

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

  @confirmation_url = T.let(nil, T.nilable(String))
  @created_at = T.let(nil, T.nilable(String))
  @id = T.let(nil, T.nilable(Integer))
  @name = T.let(nil, T.nilable(String))
  @price = T.let(nil, T.nilable(T.any(String, Float)))
  @return_url = T.let(nil, T.nilable(String))
  @status = T.let(nil, T.nilable(String))
  @test = T.let(nil, T.nilable(T::Boolean))
  @updated_at = 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

#confirmation_urlObject (readonly)

Returns the value of attribute confirmation_url.



39
40
41
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 39

def confirmation_url
  @confirmation_url
end

#created_atObject (readonly)

Returns the value of attribute created_at.



41
42
43
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 41

def created_at
  @created_at
end

#idObject (readonly)

Returns the value of attribute id.



43
44
45
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 43

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



45
46
47
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 45

def name
  @name
end

#priceObject (readonly)

Returns the value of attribute price.



47
48
49
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 47

def price
  @price
end

#return_urlObject (readonly)

Returns the value of attribute return_url.



49
50
51
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 49

def return_url
  @return_url
end

#statusObject (readonly)

Returns the value of attribute status.



51
52
53
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 51

def status
  @status
end

#testObject (readonly)

Returns the value of attribute test.



53
54
55
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 53

def test
  @test
end

#updated_atObject (readonly)

Returns the value of attribute updated_at.



55
56
57
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 55

def updated_at
  @updated_at
end

Class Method Details

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



86
87
88
89
90
91
92
93
94
95
96
97
98
99
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 86

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[ApplicationCharge])
end

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



65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 65

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(ApplicationCharge))
end