Class: Google::Apis::ContentV2::CustomerReturnReason
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::CustomerReturnReason
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2/classes.rb,
lib/google/apis/content_v2/representations.rb,
lib/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#description ⇒ String
Description of the reason.
-
#reason_code ⇒ String
Code of the return reason.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomerReturnReason
constructor
A new instance of CustomerReturnReason.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CustomerReturnReason
Returns a new instance of CustomerReturnReason.
1778 1779 1780 |
# File 'lib/google/apis/content_v2/classes.rb', line 1778 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Description of the reason.
Corresponds to the JSON property description
1767 1768 1769 |
# File 'lib/google/apis/content_v2/classes.rb', line 1767 def description @description end |
#reason_code ⇒ String
Code of the return reason. Acceptable values are: - "betterPriceFound
" - "
changedMind
" - "damagedOrDefectiveItem
" - "didNotMatchDescription
" - "
doesNotFit
" - "expiredItem
" - "incorrectItemReceived
" - "noLongerNeeded
"
- "
notSpecified
" - "orderedWrongItem
" - "other
" - "qualityNotExpected
" - "
receivedTooLate
" - "undeliverable
" Corresponds to the JSON propertyreasonCode
1776 1777 1778 |
# File 'lib/google/apis/content_v2/classes.rb', line 1776 def reason_code @reason_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1783 1784 1785 1786 |
# File 'lib/google/apis/content_v2/classes.rb', line 1783 def update!(**args) @description = args[:description] if args.key?(:description) @reason_code = args[:reason_code] if args.key?(:reason_code) end |