Class: Google::Apis::MerchantapiReportsV1beta::ProductChange
- Inherits:
-
Object
- Object
- Google::Apis::MerchantapiReportsV1beta::ProductChange
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/merchantapi_reports_v1beta/classes.rb,
lib/google/apis/merchantapi_reports_v1beta/representations.rb,
lib/google/apis/merchantapi_reports_v1beta/representations.rb
Overview
The change that happened to the product including old value, new value, country code as the region code and reporting context.
Instance Attribute Summary collapse
-
#new_value ⇒ String
The new value of the changed resource or attribute.
-
#old_value ⇒ String
The old value of the changed resource or attribute.
-
#region_code ⇒ String
Countries that have the change (if applicable) Corresponds to the JSON property
regionCode
. -
#reporting_context ⇒ String
Reporting contexts that have the change (if applicable) Corresponds to the JSON property
reportingContext
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProductChange
constructor
A new instance of ProductChange.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ProductChange
Returns a new instance of ProductChange.
1121 1122 1123 |
# File 'lib/google/apis/merchantapi_reports_v1beta/classes.rb', line 1121 def initialize(**args) update!(**args) end |
Instance Attribute Details
#new_value ⇒ String
The new value of the changed resource or attribute.
Corresponds to the JSON property newValue
1104 1105 1106 |
# File 'lib/google/apis/merchantapi_reports_v1beta/classes.rb', line 1104 def new_value @new_value end |
#old_value ⇒ String
The old value of the changed resource or attribute.
Corresponds to the JSON property oldValue
1109 1110 1111 |
# File 'lib/google/apis/merchantapi_reports_v1beta/classes.rb', line 1109 def old_value @old_value end |
#region_code ⇒ String
Countries that have the change (if applicable)
Corresponds to the JSON property regionCode
1114 1115 1116 |
# File 'lib/google/apis/merchantapi_reports_v1beta/classes.rb', line 1114 def region_code @region_code end |
#reporting_context ⇒ String
Reporting contexts that have the change (if applicable)
Corresponds to the JSON property reportingContext
1119 1120 1121 |
# File 'lib/google/apis/merchantapi_reports_v1beta/classes.rb', line 1119 def reporting_context @reporting_context end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1126 1127 1128 1129 1130 1131 |
# File 'lib/google/apis/merchantapi_reports_v1beta/classes.rb', line 1126 def update!(**args) @new_value = args[:new_value] if args.key?(:new_value) @old_value = args[:old_value] if args.key?(:old_value) @region_code = args[:region_code] if args.key?(:region_code) @reporting_context = args[:reporting_context] if args.key?(:reporting_context) end |