Class: ShopifyAPI::CustomerSavedSearch
- Inherits:
-
Rest::Base
- Object
- Rest::Base
- ShopifyAPI::CustomerSavedSearch
- Extended by:
- T::Sig
- Defined in:
- lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb,
lib/shopify_api/rest/resources/2023_01/customer_saved_search.rb,
lib/shopify_api/rest/resources/2023_04/customer_saved_search.rb,
lib/shopify_api/rest/resources/2023_07/customer_saved_search.rb
Instance Attribute Summary collapse
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#query ⇒ Object
readonly
Returns the value of attribute query.
-
#updated_at ⇒ Object
readonly
Returns the value of attribute updated_at.
Attributes inherited from Rest::Base
Class Method Summary collapse
- .all(limit: nil, since_id: nil, fields: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
- .count(since_id: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
- .customers(id:, order: nil, limit: nil, fields: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
- .delete(id:, session: ShopifyAPI::Context.active_session) ⇒ Object
- .find(id:, fields: nil, session: ShopifyAPI::Context.active_session) ⇒ Object
Instance Method Summary collapse
-
#initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) ⇒ CustomerSavedSearch
constructor
A new instance of CustomerSavedSearch.
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) ⇒ CustomerSavedSearch
Returns a new instance of CustomerSavedSearch.
19 20 21 22 23 24 25 26 27 28 |
# File 'lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb', line 19 def initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) @created_at = T.let(nil, T.nilable(String)) @id = T.let(nil, T.nilable(Integer)) @name = T.let(nil, T.nilable(String)) @query = T.let(nil, T.nilable(String)) @updated_at = 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
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
43 44 45 |
# File 'lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb', line 43 def created_at @created_at end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
45 46 47 |
# File 'lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb', line 45 def id @id end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
47 48 49 |
# File 'lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb', line 47 def name @name end |
#query ⇒ Object (readonly)
Returns the value of attribute query.
49 50 51 |
# File 'lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb', line 49 def query @query end |
#updated_at ⇒ Object (readonly)
Returns the value of attribute updated_at.
51 52 53 |
# File 'lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb', line 51 def updated_at @updated_at end |
Class Method Details
.all(limit: nil, since_id: nil, fields: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb', line 102 def all( limit: nil, since_id: nil, fields: nil, session: ShopifyAPI::Context.active_session, **kwargs ) response = base_find( session: session, ids: {}, params: {limit: limit, since_id: since_id, fields: fields}.merge(kwargs).compact, ) T.cast(response, T::Array[CustomerSavedSearch]) end |
.count(since_id: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
# File 'lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb', line 125 def count( since_id: nil, session: ShopifyAPI::Context.active_session, **kwargs ) request( http_method: :get, operation: :count, session: session, ids: {}, params: {since_id: since_id}.merge(kwargs).compact, body: {}, entity: nil, ) end |
.customers(id:, order: nil, limit: nil, fields: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
# File 'lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb', line 151 def customers( id:, order: nil, limit: nil, fields: nil, session: ShopifyAPI::Context.active_session, **kwargs ) request( http_method: :get, operation: :customers, session: session, ids: {id: id}, params: {order: order, limit: limit, fields: fields}.merge(kwargs).compact, body: {}, entity: nil, ) end |
.delete(id:, session: ShopifyAPI::Context.active_session) ⇒ Object
80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb', line 80 def delete( id:, session: ShopifyAPI::Context.active_session ) request( http_method: :delete, operation: :delete, session: session, ids: {id: id}, params: {}, ) end |
.find(id:, fields: nil, session: ShopifyAPI::Context.active_session) ⇒ Object
61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/shopify_api/rest/resources/2022_04/customer_saved_search.rb', line 61 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(CustomerSavedSearch)) end |