Class: Google::Apis::ContentV2::ReturnShipment
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::ReturnShipment
- 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
-
#creation_date ⇒ String
Corresponds to the JSON property
creationDate
. -
#delivery_date ⇒ String
Corresponds to the JSON property
deliveryDate
. -
#return_method_type ⇒ String
Corresponds to the JSON property
returnMethodType
. -
#shipment_id ⇒ String
Corresponds to the JSON property
shipmentId
. -
#shipment_tracking_infos ⇒ Array<Google::Apis::ContentV2::ShipmentTrackingInfo>
Corresponds to the JSON property
shipmentTrackingInfos
. -
#shipping_date ⇒ String
Corresponds to the JSON property
shippingDate
. -
#state ⇒ String
Corresponds to the JSON property
state
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReturnShipment
constructor
A new instance of ReturnShipment.
-
#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) ⇒ ReturnShipment
Returns a new instance of ReturnShipment
9968 9969 9970 |
# File 'generated/google/apis/content_v2/classes.rb', line 9968 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creation_date ⇒ String
Corresponds to the JSON property creationDate
9936 9937 9938 |
# File 'generated/google/apis/content_v2/classes.rb', line 9936 def creation_date @creation_date end |
#delivery_date ⇒ String
Corresponds to the JSON property deliveryDate
9941 9942 9943 |
# File 'generated/google/apis/content_v2/classes.rb', line 9941 def delivery_date @delivery_date end |
#return_method_type ⇒ String
Corresponds to the JSON property returnMethodType
9946 9947 9948 |
# File 'generated/google/apis/content_v2/classes.rb', line 9946 def return_method_type @return_method_type end |
#shipment_id ⇒ String
Corresponds to the JSON property shipmentId
9951 9952 9953 |
# File 'generated/google/apis/content_v2/classes.rb', line 9951 def shipment_id @shipment_id end |
#shipment_tracking_infos ⇒ Array<Google::Apis::ContentV2::ShipmentTrackingInfo>
Corresponds to the JSON property shipmentTrackingInfos
9956 9957 9958 |
# File 'generated/google/apis/content_v2/classes.rb', line 9956 def shipment_tracking_infos @shipment_tracking_infos end |
#shipping_date ⇒ String
Corresponds to the JSON property shippingDate
9961 9962 9963 |
# File 'generated/google/apis/content_v2/classes.rb', line 9961 def shipping_date @shipping_date end |
#state ⇒ String
Corresponds to the JSON property state
9966 9967 9968 |
# File 'generated/google/apis/content_v2/classes.rb', line 9966 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9973 9974 9975 9976 9977 9978 9979 9980 9981 |
# File 'generated/google/apis/content_v2/classes.rb', line 9973 def update!(**args) @creation_date = args[:creation_date] if args.key?(:creation_date) @delivery_date = args[:delivery_date] if args.key?(:delivery_date) @return_method_type = args[:return_method_type] if args.key?(:return_method_type) @shipment_id = args[:shipment_id] if args.key?(:shipment_id) @shipment_tracking_infos = args[:shipment_tracking_infos] if args.key?(:shipment_tracking_infos) @shipping_date = args[:shipping_date] if args.key?(:shipping_date) @state = args[:state] if args.key?(:state) end |