Class: Google::Shopping::Merchant::Reviews::V1beta::MerchantReviewStatus

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/shopping/merchant/reviews/v1beta/merchantreviews_common.rb

Overview

The status of a merchant review, data validation issues, that is, information about a merchant review computed asynchronously.

Defined Under Namespace

Classes: MerchantReviewDestinationStatus, MerchantReviewItemLevelIssue

Instance Attribute Summary collapse

Instance Attribute Details

#create_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. Date on which the item has been created, in ISO 8601 format.

Returns:



126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# File 'proto_docs/google/shopping/merchant/reviews/v1beta/merchantreviews_common.rb', line 126

class MerchantReviewStatus
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The destination status of the merchant review status.
  # @!attribute [r] reporting_context
  #   @return [::Google::Shopping::Type::ReportingContext::ReportingContextEnum]
  #     Output only. The name of the reporting context.
  class MerchantReviewDestinationStatus
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # The ItemLevelIssue of the merchant review status.
  # @!attribute [r] code
  #   @return [::String]
  #     Output only. The error code of the issue.
  # @!attribute [r] severity
  #   @return [::Google::Shopping::Merchant::Reviews::V1beta::MerchantReviewStatus::MerchantReviewItemLevelIssue::Severity]
  #     Output only. How this issue affects serving of the merchant review.
  # @!attribute [r] resolution
  #   @return [::String]
  #     Output only. Whether the issue can be resolved by the merchant.
  # @!attribute [r] attribute
  #   @return [::String]
  #     Output only. The attribute's name, if the issue is caused by a single
  #     attribute.
  # @!attribute [r] reporting_context
  #   @return [::Google::Shopping::Type::ReportingContext::ReportingContextEnum]
  #     Output only. The reporting context the issue applies to.
  # @!attribute [r] description
  #   @return [::String]
  #     Output only. A short issue description in English.
  # @!attribute [r] detail
  #   @return [::String]
  #     Output only. A detailed issue description in English.
  # @!attribute [r] documentation
  #   @return [::String]
  #     Output only. The URL of a web page to help with resolving this issue.
  class MerchantReviewItemLevelIssue
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # How the issue affects the serving of the merchant review.
    module Severity
      # Not specified.
      SEVERITY_UNSPECIFIED = 0

      # This issue represents a warning and does not have a direct affect
      # on the merchant review.
      NOT_IMPACTED = 1

      # Issue disapproves the merchant review.
      DISAPPROVED = 2
    end
  end
end

#destination_statuses::Array<::Google::Shopping::Merchant::Reviews::V1beta::MerchantReviewStatus::MerchantReviewDestinationStatus> (readonly)

Returns Output only. The intended destinations for the merchant review.

Returns:



126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# File 'proto_docs/google/shopping/merchant/reviews/v1beta/merchantreviews_common.rb', line 126

class MerchantReviewStatus
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The destination status of the merchant review status.
  # @!attribute [r] reporting_context
  #   @return [::Google::Shopping::Type::ReportingContext::ReportingContextEnum]
  #     Output only. The name of the reporting context.
  class MerchantReviewDestinationStatus
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # The ItemLevelIssue of the merchant review status.
  # @!attribute [r] code
  #   @return [::String]
  #     Output only. The error code of the issue.
  # @!attribute [r] severity
  #   @return [::Google::Shopping::Merchant::Reviews::V1beta::MerchantReviewStatus::MerchantReviewItemLevelIssue::Severity]
  #     Output only. How this issue affects serving of the merchant review.
  # @!attribute [r] resolution
  #   @return [::String]
  #     Output only. Whether the issue can be resolved by the merchant.
  # @!attribute [r] attribute
  #   @return [::String]
  #     Output only. The attribute's name, if the issue is caused by a single
  #     attribute.
  # @!attribute [r] reporting_context
  #   @return [::Google::Shopping::Type::ReportingContext::ReportingContextEnum]
  #     Output only. The reporting context the issue applies to.
  # @!attribute [r] description
  #   @return [::String]
  #     Output only. A short issue description in English.
  # @!attribute [r] detail
  #   @return [::String]
  #     Output only. A detailed issue description in English.
  # @!attribute [r] documentation
  #   @return [::String]
  #     Output only. The URL of a web page to help with resolving this issue.
  class MerchantReviewItemLevelIssue
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # How the issue affects the serving of the merchant review.
    module Severity
      # Not specified.
      SEVERITY_UNSPECIFIED = 0

      # This issue represents a warning and does not have a direct affect
      # on the merchant review.
      NOT_IMPACTED = 1

      # Issue disapproves the merchant review.
      DISAPPROVED = 2
    end
  end
end

#item_level_issues::Array<::Google::Shopping::Merchant::Reviews::V1beta::MerchantReviewStatus::MerchantReviewItemLevelIssue> (readonly)

Returns Output only. A list of all issues associated with the merchant review.

Returns:



126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# File 'proto_docs/google/shopping/merchant/reviews/v1beta/merchantreviews_common.rb', line 126

class MerchantReviewStatus
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The destination status of the merchant review status.
  # @!attribute [r] reporting_context
  #   @return [::Google::Shopping::Type::ReportingContext::ReportingContextEnum]
  #     Output only. The name of the reporting context.
  class MerchantReviewDestinationStatus
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # The ItemLevelIssue of the merchant review status.
  # @!attribute [r] code
  #   @return [::String]
  #     Output only. The error code of the issue.
  # @!attribute [r] severity
  #   @return [::Google::Shopping::Merchant::Reviews::V1beta::MerchantReviewStatus::MerchantReviewItemLevelIssue::Severity]
  #     Output only. How this issue affects serving of the merchant review.
  # @!attribute [r] resolution
  #   @return [::String]
  #     Output only. Whether the issue can be resolved by the merchant.
  # @!attribute [r] attribute
  #   @return [::String]
  #     Output only. The attribute's name, if the issue is caused by a single
  #     attribute.
  # @!attribute [r] reporting_context
  #   @return [::Google::Shopping::Type::ReportingContext::ReportingContextEnum]
  #     Output only. The reporting context the issue applies to.
  # @!attribute [r] description
  #   @return [::String]
  #     Output only. A short issue description in English.
  # @!attribute [r] detail
  #   @return [::String]
  #     Output only. A detailed issue description in English.
  # @!attribute [r] documentation
  #   @return [::String]
  #     Output only. The URL of a web page to help with resolving this issue.
  class MerchantReviewItemLevelIssue
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # How the issue affects the serving of the merchant review.
    module Severity
      # Not specified.
      SEVERITY_UNSPECIFIED = 0

      # This issue represents a warning and does not have a direct affect
      # on the merchant review.
      NOT_IMPACTED = 1

      # Issue disapproves the merchant review.
      DISAPPROVED = 2
    end
  end
end

#last_update_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. Date on which the item has been last updated, in ISO 8601 format.

Returns:



126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# File 'proto_docs/google/shopping/merchant/reviews/v1beta/merchantreviews_common.rb', line 126

class MerchantReviewStatus
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The destination status of the merchant review status.
  # @!attribute [r] reporting_context
  #   @return [::Google::Shopping::Type::ReportingContext::ReportingContextEnum]
  #     Output only. The name of the reporting context.
  class MerchantReviewDestinationStatus
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # The ItemLevelIssue of the merchant review status.
  # @!attribute [r] code
  #   @return [::String]
  #     Output only. The error code of the issue.
  # @!attribute [r] severity
  #   @return [::Google::Shopping::Merchant::Reviews::V1beta::MerchantReviewStatus::MerchantReviewItemLevelIssue::Severity]
  #     Output only. How this issue affects serving of the merchant review.
  # @!attribute [r] resolution
  #   @return [::String]
  #     Output only. Whether the issue can be resolved by the merchant.
  # @!attribute [r] attribute
  #   @return [::String]
  #     Output only. The attribute's name, if the issue is caused by a single
  #     attribute.
  # @!attribute [r] reporting_context
  #   @return [::Google::Shopping::Type::ReportingContext::ReportingContextEnum]
  #     Output only. The reporting context the issue applies to.
  # @!attribute [r] description
  #   @return [::String]
  #     Output only. A short issue description in English.
  # @!attribute [r] detail
  #   @return [::String]
  #     Output only. A detailed issue description in English.
  # @!attribute [r] documentation
  #   @return [::String]
  #     Output only. The URL of a web page to help with resolving this issue.
  class MerchantReviewItemLevelIssue
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # How the issue affects the serving of the merchant review.
    module Severity
      # Not specified.
      SEVERITY_UNSPECIFIED = 0

      # This issue represents a warning and does not have a direct affect
      # on the merchant review.
      NOT_IMPACTED = 1

      # Issue disapproves the merchant review.
      DISAPPROVED = 2
    end
  end
end