Class: ShopifyAPI::Policy
- Inherits:
-
Rest::Base
- Object
- Rest::Base
- ShopifyAPI::Policy
- 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,
lib/shopify_api/rest/resources/2023_10/policy.rb,
lib/shopify_api/rest/resources/2024_01/policy.rb,
lib/shopify_api/rest/resources/2024_04/policy.rb,
lib/shopify_api/rest/resources/2024_07/policy.rb,
lib/shopify_api/rest/resources/2024_10/policy.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#handle ⇒ Object
readonly
Returns the value of attribute handle.
-
#title ⇒ Object
readonly
Returns the value of attribute title.
-
#updated_at ⇒ Object
readonly
Returns the value of attribute updated_at.
-
#url ⇒ Object
readonly
Returns the value of attribute url.
Attributes inherited from Rest::Base
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) ⇒ Policy
constructor
A new instance of Policy.
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) ⇒ Policy
Returns a new instance of Policy.
19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/shopify_api/rest/resources/2022_04/policy.rb', line 19 def initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) @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)) 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
#body ⇒ Object (readonly)
Returns the value of attribute body.
38 39 40 |
# File 'lib/shopify_api/rest/resources/2022_04/policy.rb', line 38 def body @body end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
40 41 42 |
# File 'lib/shopify_api/rest/resources/2022_04/policy.rb', line 40 def created_at @created_at end |
#handle ⇒ Object (readonly)
Returns the value of attribute handle.
42 43 44 |
# File 'lib/shopify_api/rest/resources/2022_04/policy.rb', line 42 def handle @handle end |
#title ⇒ Object (readonly)
Returns the value of attribute title.
44 45 46 |
# File 'lib/shopify_api/rest/resources/2022_04/policy.rb', line 44 def title @title end |
#updated_at ⇒ Object (readonly)
Returns the value of attribute updated_at.
46 47 48 |
# File 'lib/shopify_api/rest/resources/2022_04/policy.rb', line 46 def updated_at @updated_at end |
#url ⇒ Object (readonly)
Returns the value of attribute url.
48 49 50 |
# File 'lib/shopify_api/rest/resources/2022_04/policy.rb', line 48 def url @url end |
Class Method Details
.all(session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/shopify_api/rest/resources/2022_04/policy.rb', line 57 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 |