Class: Google::Apis::ContentV2_1::CustomerReturnReason
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::CustomerReturnReason
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/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.
1742 1743 1744 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1742 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Description of the reason.
Corresponds to the JSON property description
1731 1732 1733 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1731 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
1740 1741 1742 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1740 def reason_code @reason_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1747 1748 1749 1750 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 1747 def update!(**args) @description = args[:description] if args.key?(:description) @reason_code = args[:reason_code] if args.key?(:reason_code) end |