Class: ShopifyAPI::StorefrontAccessToken

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

Returns a new instance of StorefrontAccessToken.



16
17
18
19
20
21
22
23
24
# File 'lib/shopify_api/rest/resources/2022_04/storefront_access_token.rb', line 16

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

  @title = T.let(nil, T.nilable(String))
  @access_scope = T.let(nil, T.nilable(String))
  @access_token = T.let(nil, T.nilable(String))
  @created_at = T.let(nil, T.nilable(String))
  @id = T.let(nil, T.nilable(Integer))
end

Dynamic Method Handling

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

Instance Attribute Details

#access_scopeObject (readonly)

Returns the value of attribute access_scope.



37
38
39
# File 'lib/shopify_api/rest/resources/2022_04/storefront_access_token.rb', line 37

def access_scope
  @access_scope
end

#access_tokenObject (readonly)

Returns the value of attribute access_token.



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

def access_token
  @access_token
end

#created_atObject (readonly)

Returns the value of attribute created_at.



41
42
43
# File 'lib/shopify_api/rest/resources/2022_04/storefront_access_token.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_04/storefront_access_token.rb', line 43

def id
  @id
end

#titleObject (readonly)

Returns the value of attribute title.



35
36
37
# File 'lib/shopify_api/rest/resources/2022_04/storefront_access_token.rb', line 35

def title
  @title
end

Class Method Details

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



71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/shopify_api/rest/resources/2022_04/storefront_access_token.rb', line 71

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

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

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



52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/shopify_api/rest/resources/2022_04/storefront_access_token.rb', line 52

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