Class: ShopifyAPI::Asset

Inherits:
Rest::Base show all
Extended by:
T::Sig
Defined in:
lib/shopify_api/rest/resources/2022_04/asset.rb,
lib/shopify_api/rest/resources/2022_07/asset.rb,
lib/shopify_api/rest/resources/2022_10/asset.rb,
lib/shopify_api/rest/resources/2023_01/asset.rb,
lib/shopify_api/rest/resources/2023_04/asset.rb,
lib/shopify_api/rest/resources/2023_07/asset.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, read_only_attributes, request, #respond_to_missing?, #save, #save!, #to_hash

Constructor Details

#initialize(session: ShopifyAPI::Context.active_session) ⇒ Asset

Returns a new instance of Asset.



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

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

  @attachment = T.let(nil, T.nilable(String))
  @checksum = T.let(nil, T.nilable(String))
  @content_type = T.let(nil, T.nilable(String))
  @created_at = T.let(nil, T.nilable(String))
  @key = T.let(nil, T.nilable(String))
  @public_url = T.let(nil, T.nilable(String))
  @size = T.let(nil, T.nilable(Integer))
  @theme_id = T.let(nil, T.nilable(Integer))
  @updated_at = T.let(nil, T.nilable(String))
  @value = 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

#attachmentObject (readonly)

Returns the value of attribute attachment.



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

def attachment
  @attachment
end

#checksumObject (readonly)

Returns the value of attribute checksum.



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

def checksum
  @checksum
end

#content_typeObject (readonly)

Returns the value of attribute content_type.



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

def content_type
  @content_type
end

#created_atObject (readonly)

Returns the value of attribute created_at.



47
48
49
# File 'lib/shopify_api/rest/resources/2022_04/asset.rb', line 47

def created_at
  @created_at
end

#keyObject (readonly)

Returns the value of attribute key.



49
50
51
# File 'lib/shopify_api/rest/resources/2022_04/asset.rb', line 49

def key
  @key
end

#public_urlObject (readonly)

Returns the value of attribute public_url.



51
52
53
# File 'lib/shopify_api/rest/resources/2022_04/asset.rb', line 51

def public_url
  @public_url
end

#sizeObject (readonly)

Returns the value of attribute size.



53
54
55
# File 'lib/shopify_api/rest/resources/2022_04/asset.rb', line 53

def size
  @size
end

#theme_idObject (readonly)

Returns the value of attribute theme_id.



55
56
57
# File 'lib/shopify_api/rest/resources/2022_04/asset.rb', line 55

def theme_id
  @theme_id
end

#updated_atObject (readonly)

Returns the value of attribute updated_at.



57
58
59
# File 'lib/shopify_api/rest/resources/2022_04/asset.rb', line 57

def updated_at
  @updated_at
end

#valueObject (readonly)

Returns the value of attribute value.



59
60
61
# File 'lib/shopify_api/rest/resources/2022_04/asset.rb', line 59

def value
  @value
end

Class Method Details

.all(theme_id: nil, fields: nil, asset: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object



99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# File 'lib/shopify_api/rest/resources/2022_04/asset.rb', line 99

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

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

.delete(theme_id: nil, asset: nil, session: ShopifyAPI::Context.active_session) ⇒ Object



76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/shopify_api/rest/resources/2022_04/asset.rb', line 76

def delete(
  theme_id: nil,
  asset: nil,
  session: ShopifyAPI::Context.active_session
)
  request(
    http_method: :delete,
    operation: :delete,
    session: session,
    ids: {theme_id: theme_id},
    params: {asset: asset},
  )
end

.primary_keyObject



65
66
67
# File 'lib/shopify_api/rest/resources/2022_04/asset.rb', line 65

def primary_key()
  "key"
end