Class: Google::Apis::ContentV2::OrdersReturnRefundLineItemRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContentV2::OrdersReturnRefundLineItemRequest
 
 
- Defined in:
 - generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #amount_pretax  ⇒ Google::Apis::ContentV2::Price 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The amount that is refunded.
 - 
  
    
      #amount_tax  ⇒ Google::Apis::ContentV2::Price 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Tax amount that correspond to refund amount in amountPretax.
 - 
  
    
      #line_item_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the line item to return.
 - 
  
    
      #operation_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the operation.
 - 
  
    
      #product_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the product to return.
 - 
  
    
      #quantity  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The quantity to return and refund.
 - 
  
    
      #reason  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The reason for the return.
 - 
  
    
      #reason_text  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The explanation of the reason.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OrdersReturnRefundLineItemRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of OrdersReturnRefundLineItemRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ OrdersReturnRefundLineItemRequest
Returns a new instance of OrdersReturnRefundLineItemRequest
      6920 6921 6922  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 6920 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#amount_pretax ⇒ Google::Apis::ContentV2::Price
The amount that is refunded. If omitted, refundless return is assumed (same as
calling returnLineItem method). Optional, but if filled then both amountPretax
and amountTax must be set.
Corresponds to the JSON property amountPretax
      6882 6883 6884  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 6882 def amount_pretax @amount_pretax end  | 
  
#amount_tax ⇒ Google::Apis::ContentV2::Price
Tax amount that correspond to refund amount in amountPretax.
Corresponds to the JSON property amountTax
      6887 6888 6889  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 6887 def amount_tax @amount_tax end  | 
  
#line_item_id ⇒ String
The ID of the line item to return. Either lineItemId or productId is required.
Corresponds to the JSON property lineItemId
      6892 6893 6894  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 6892 def line_item_id @line_item_id end  | 
  
#operation_id ⇒ String
The ID of the operation. Unique across all operations for a given order.
Corresponds to the JSON property operationId
      6897 6898 6899  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 6897 def operation_id @operation_id end  | 
  
#product_id ⇒ String
The ID of the product to return. This is the REST ID used in the products
service. Either lineItemId or productId is required.
Corresponds to the JSON property productId
      6903 6904 6905  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 6903 def product_id @product_id end  | 
  
#quantity ⇒ Fixnum
The quantity to return and refund.
Corresponds to the JSON property quantity
      6908 6909 6910  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 6908 def quantity @quantity end  | 
  
#reason ⇒ String
The reason for the return.
Corresponds to the JSON property reason
      6913 6914 6915  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 6913 def reason @reason end  | 
  
#reason_text ⇒ String
The explanation of the reason.
Corresponds to the JSON property reasonText
      6918 6919 6920  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 6918 def reason_text @reason_text end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6925 6926 6927 6928 6929 6930 6931 6932 6933 6934  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 6925 def update!(**args) @amount_pretax = args[:amount_pretax] if args.key?(:amount_pretax) @amount_tax = args[:amount_tax] if args.key?(:amount_tax) @line_item_id = args[:line_item_id] if args.key?(:line_item_id) @operation_id = args[:operation_id] if args.key?(:operation_id) @product_id = args[:product_id] if args.key?(:product_id) @quantity = args[:quantity] if args.key?(:quantity) @reason = args[:reason] if args.key?(:reason) @reason_text = args[:reason_text] if args.key?(:reason_text) end  |