Class: Google::Apis::ContentV2::ProductStatusItemLevelIssue
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContentV2::ProductStatusItemLevelIssue
 
 
- Defined in:
 - generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #attribute_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The attribute's name, if the issue is caused by a single attribute.
 - 
  
    
      #code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The error code of the issue.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A short issue description in English.
 - 
  
    
      #destination  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The destination the issue applies to.
 - 
  
    
      #detail  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A detailed issue description in English.
 - 
  
    
      #documentation  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The URL of a web page to help with resolving this issue.
 - 
  
    
      #resolution  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Whether the issue can be resolved by the merchant.
 - 
  
    
      #servability  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
How this issue affects serving of the offer.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ProductStatusItemLevelIssue 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ProductStatusItemLevelIssue.
 - 
  
    
      #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) ⇒ ProductStatusItemLevelIssue
Returns a new instance of ProductStatusItemLevelIssue
      9063 9064 9065  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 9063 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#attribute_name ⇒ String
The attribute's name, if the issue is caused by a single attribute.
Corresponds to the JSON property attributeName
      9026 9027 9028  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 9026 def attribute_name @attribute_name end  | 
  
#code ⇒ String
The error code of the issue.
Corresponds to the JSON property code
      9031 9032 9033  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 9031 def code @code end  | 
  
#description ⇒ String
A short issue description in English.
Corresponds to the JSON property description
      9036 9037 9038  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 9036 def description @description end  | 
  
#destination ⇒ String
The destination the issue applies to.
Corresponds to the JSON property destination
      9041 9042 9043  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 9041 def destination @destination end  | 
  
#detail ⇒ String
A detailed issue description in English.
Corresponds to the JSON property detail
      9046 9047 9048  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 9046 def detail @detail end  | 
  
#documentation ⇒ String
The URL of a web page to help with resolving this issue.
Corresponds to the JSON property documentation
      9051 9052 9053  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 9051 def documentation @documentation end  | 
  
#resolution ⇒ String
Whether the issue can be resolved by the merchant.
Corresponds to the JSON property resolution
      9056 9057 9058  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 9056 def resolution @resolution end  | 
  
#servability ⇒ String
How this issue affects serving of the offer.
Corresponds to the JSON property servability
      9061 9062 9063  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 9061 def servability @servability end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      9068 9069 9070 9071 9072 9073 9074 9075 9076 9077  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 9068 def update!(**args) @attribute_name = args[:attribute_name] if args.key?(:attribute_name) @code = args[:code] if args.key?(:code) @description = args[:description] if args.key?(:description) @destination = args[:destination] if args.key?(:destination) @detail = args[:detail] if args.key?(:detail) @documentation = args[:documentation] if args.key?(:documentation) @resolution = args[:resolution] if args.key?(:resolution) @servability = args[:servability] if args.key?(:servability) end  |