Class: Google::Apis::ContentV2_1::MerchantRejectionReason
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::MerchantRejectionReason
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb
Instance Attribute Summary collapse
-
#description ⇒ String
Description of the reason.
-
#reason_code ⇒ String
Code of the rejection reason.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MerchantRejectionReason
constructor
A new instance of MerchantRejectionReason.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MerchantRejectionReason
Returns a new instance of MerchantRejectionReason.
4695 4696 4697 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 4695 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Description of the reason.
Corresponds to the JSON property description
4688 4689 4690 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 4688 def description @description end |
#reason_code ⇒ String
Code of the rejection reason.
Corresponds to the JSON property reasonCode
4693 4694 4695 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 4693 def reason_code @reason_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4700 4701 4702 4703 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 4700 def update!(**args) @description = args[:description] if args.key?(:description) @reason_code = args[:reason_code] if args.key?(:reason_code) end |