19
20
21
22
23
24
25
26
27
28
29
30
|
# File 'lib/shopify_api/rest/resources/2022_04/collect.rb', line 19
def initialize(session: ShopifyAPI::Context.active_session, from_hash: nil)
@collection_id = T.let(nil, T.nilable(Integer))
@created_at = T.let(nil, T.nilable(String))
@id = T.let(nil, T.nilable(Integer))
@position = T.let(nil, T.nilable(Integer))
@product_id = T.let(nil, T.nilable(Integer))
@sort_value = T.let(nil, T.nilable(String))
@updated_at = T.let(nil, T.nilable(String))
super(session: session, from_hash: from_hash)
end
|