Class: ShopifyAPI::Policy

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

Returns a new instance of Policy.



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

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

  @body = T.let(nil, T.nilable(String))
  @created_at = T.let(nil, T.nilable(String))
  @handle = T.let(nil, T.nilable(String))
  @title = T.let(nil, T.nilable(String))
  @updated_at = T.let(nil, T.nilable(String))
  @url = 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

#bodyObject (readonly)

Returns the value of attribute body.



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

def body
  @body
end

#created_atObject (readonly)

Returns the value of attribute created_at.



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

def created_at
  @created_at
end

#handleObject (readonly)

Returns the value of attribute handle.



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

def handle
  @handle
end

#titleObject (readonly)

Returns the value of attribute title.



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

def title
  @title
end

#updated_atObject (readonly)

Returns the value of attribute updated_at.



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

def updated_at
  @updated_at
end

#urlObject (readonly)

Returns the value of attribute url.



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

def url
  @url
end

Class Method Details

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



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

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

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