122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
# File 'lib/shopify_api/rest/resources/2022_04/webhook.rb', line 122
def all(
address: nil,
created_at_max: nil,
created_at_min: nil,
fields: nil,
limit: nil,
since_id: nil,
topic: nil,
updated_at_min: nil,
updated_at_max: nil,
session: ShopifyAPI::Context.active_session,
**kwargs
)
response = base_find(
session: session,
ids: {},
params: {address: address, created_at_max: created_at_max, created_at_min: created_at_min, fields: fields, limit: limit, since_id: since_id, topic: topic, updated_at_min: updated_at_min, updated_at_max: updated_at_max}.merge(kwargs).compact,
)
T.cast(response, T::Array[Webhook])
end
|