Class: ShopifyAPI::ResourceFeedback

Inherits:
ShopifyAPI::Rest::Base show all
Extended by:
T::Sig
Defined in:
lib/shopify_api/rest/resources/2022_04/resource_feedback.rb,
lib/shopify_api/rest/resources/2022_07/resource_feedback.rb,
lib/shopify_api/rest/resources/2022_10/resource_feedback.rb,
lib/shopify_api/rest/resources/2023_01/resource_feedback.rb,
lib/shopify_api/rest/resources/2023_04/resource_feedback.rb,
lib/shopify_api/rest/resources/2023_07/resource_feedback.rb

Instance Attribute Summary collapse

Attributes inherited from ShopifyAPI::Rest::Base

#errors, #original_state

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from ShopifyAPI::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, primary_key, read_only_attributes, request, #respond_to_missing?, #save, #save!, #to_hash

Constructor Details

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

Returns a new instance of ResourceFeedback.



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

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

  @created_at = T.let(nil, T.nilable(String))
  @feedback_generated_at = T.let(nil, T.nilable(String))
  @messages = T.let(nil, T.nilable(T::Array[T.untyped]))
  @resource_id = T.let(nil, T.nilable(Integer))
  @resource_type = T.let(nil, T.nilable(String))
  @state = T.let(nil, T.nilable(String))
  @updated_at = 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

#created_atObject (readonly)

Returns the value of attribute created_at.



36
37
38
# File 'lib/shopify_api/rest/resources/2022_04/resource_feedback.rb', line 36

def created_at
  @created_at
end

#feedback_generated_atObject (readonly)

Returns the value of attribute feedback_generated_at.



38
39
40
# File 'lib/shopify_api/rest/resources/2022_04/resource_feedback.rb', line 38

def feedback_generated_at
  @feedback_generated_at
end

#messagesObject (readonly)

Returns the value of attribute messages.



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

def messages
  @messages
end

#resource_idObject (readonly)

Returns the value of attribute resource_id.



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

def resource_id
  @resource_id
end

#resource_typeObject (readonly)

Returns the value of attribute resource_type.



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

def resource_type
  @resource_type
end

#stateObject (readonly)

Returns the value of attribute state.



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

def state
  @state
end

#updated_atObject (readonly)

Returns the value of attribute updated_at.



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

def updated_at
  @updated_at
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/resource_feedback.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[ResourceFeedback])
end