Class: Google::Apis::ContentV2_1::OrdersCreateTestOrderRequest
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::OrdersCreateTestOrderRequest
- 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
-
#country ⇒ String
The CLDR territory code of the country of the test order to create.
-
#template_name ⇒ String
The test order template to use.
-
#test_order ⇒ Google::Apis::ContentV2_1::TestOrder
The test order to create.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OrdersCreateTestOrderRequest
constructor
A new instance of OrdersCreateTestOrderRequest.
-
#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) ⇒ OrdersCreateTestOrderRequest
Returns a new instance of OrdersCreateTestOrderRequest.
6450 6451 6452 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 6450 def initialize(**args) update!(**args) end |
Instance Attribute Details
#country ⇒ String
The CLDR territory code of the country of the test order to create. Affects
the currency and addresses of orders created via template_name
, or the
addresses of orders created via test_order
.
Acceptable values are:
- "
US
" - "
FR
" Defaults toUS
. Corresponds to the JSON propertycountry
6430 6431 6432 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 6430 def country @country end |
#template_name ⇒ String
The test order template to use. Specify as an alternative to testOrder
as a
shortcut for retrieving a template and then creating an order using that
template.
Acceptable values are:
- "
template1
" - "
template1a
" - "
template1b
" - "
template2
" - "
template3
" Corresponds to the JSON propertytemplateName
6443 6444 6445 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 6443 def template_name @template_name end |
#test_order ⇒ Google::Apis::ContentV2_1::TestOrder
The test order to create.
Corresponds to the JSON property testOrder
6448 6449 6450 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 6448 def test_order @test_order end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6455 6456 6457 6458 6459 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 6455 def update!(**args) @country = args[:country] if args.key?(:country) @template_name = args[:template_name] if args.key?(:template_name) @test_order = args[:test_order] if args.key?(:test_order) end |