Class: Google::Apis::ContentV2_1::ReturnPolicy
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::ReturnPolicy
- 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
Overview
Return policy resource.
Instance Attribute Summary collapse
-
#country ⇒ String
Required.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#label ⇒ String
Required.
-
#name ⇒ String
Required.
-
#non_free_return_reasons ⇒ Array<String>
Return reasons that will incur return fees.
-
#policy ⇒ Google::Apis::ContentV2_1::ReturnPolicyPolicy
Required.
-
#return_policy_id ⇒ String
Return policy ID generated by Google.
-
#seasonal_overrides ⇒ Array<Google::Apis::ContentV2_1::ReturnPolicySeasonalOverride>
An optional list of seasonal overrides.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReturnPolicy
constructor
A new instance of ReturnPolicy.
-
#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) ⇒ ReturnPolicy
Returns a new instance of ReturnPolicy.
9932 9933 9934 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9932 def initialize(**args) update!(**args) end |
Instance Attribute Details
#country ⇒ String
Required. The country of sale where the return policy is applicable.
Corresponds to the JSON property country
9893 9894 9895 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9893 def country @country end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
returnPolicy
"
Corresponds to the JSON property kind
9899 9900 9901 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9899 def kind @kind end |
#label ⇒ String
Required. The user-defined label of the return policy. For the default policy,
use the label "default".
Corresponds to the JSON property label
9905 9906 9907 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9905 def label @label end |
#name ⇒ String
Required. The name of the policy as shown in Merchant Center.
Corresponds to the JSON property name
9910 9911 9912 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9910 def name @name end |
#non_free_return_reasons ⇒ Array<String>
Return reasons that will incur return fees.
Corresponds to the JSON property nonFreeReturnReasons
9915 9916 9917 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9915 def non_free_return_reasons @non_free_return_reasons end |
#policy ⇒ Google::Apis::ContentV2_1::ReturnPolicyPolicy
Required. The policy.
Corresponds to the JSON property policy
9920 9921 9922 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9920 def policy @policy end |
#return_policy_id ⇒ String
Return policy ID generated by Google.
Corresponds to the JSON property returnPolicyId
9925 9926 9927 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9925 def return_policy_id @return_policy_id end |
#seasonal_overrides ⇒ Array<Google::Apis::ContentV2_1::ReturnPolicySeasonalOverride>
An optional list of seasonal overrides.
Corresponds to the JSON property seasonalOverrides
9930 9931 9932 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9930 def seasonal_overrides @seasonal_overrides end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9937 def update!(**args) @country = args[:country] if args.key?(:country) @kind = args[:kind] if args.key?(:kind) @label = args[:label] if args.key?(:label) @name = args[:name] if args.key?(:name) @non_free_return_reasons = args[:non_free_return_reasons] if args.key?(:non_free_return_reasons) @policy = args[:policy] if args.key?(:policy) @return_policy_id = args[:return_policy_id] if args.key?(:return_policy_id) @seasonal_overrides = args[:seasonal_overrides] if args.key?(:seasonal_overrides) end |