Class: Google::Apis::ContentV2::AccountStatusAccountLevelIssue
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContentV2::AccountStatusAccountLevelIssue
 
- 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
- 
  
    
      #country  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Country for which this issue is reported. 
- 
  
    
      #destination  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The destination the issue applies to. 
- 
  
    
      #detail  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Additional details about the issue. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Issue identifier. 
- 
  
    
      #severity  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Severity of the issue. 
- 
  
    
      #title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Short description of the issue. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AccountStatusAccountLevelIssue 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of AccountStatusAccountLevelIssue. 
- 
  
    
      #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) ⇒ AccountStatusAccountLevelIssue
Returns a new instance of AccountStatusAccountLevelIssue
| 282 283 284 | # File 'generated/google/apis/content_v2/classes.rb', line 282 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#country ⇒ String
Country for which this issue is reported.
Corresponds to the JSON property country
| 255 256 257 | # File 'generated/google/apis/content_v2/classes.rb', line 255 def country @country end | 
#destination ⇒ String
The destination the issue applies to.
Corresponds to the JSON property destination
| 260 261 262 | # File 'generated/google/apis/content_v2/classes.rb', line 260 def destination @destination end | 
#detail ⇒ String
Additional details about the issue.
Corresponds to the JSON property detail
| 265 266 267 | # File 'generated/google/apis/content_v2/classes.rb', line 265 def detail @detail end | 
#id ⇒ String
Issue identifier.
Corresponds to the JSON property id
| 270 271 272 | # File 'generated/google/apis/content_v2/classes.rb', line 270 def id @id end | 
#severity ⇒ String
Severity of the issue.
Corresponds to the JSON property severity
| 275 276 277 | # File 'generated/google/apis/content_v2/classes.rb', line 275 def severity @severity end | 
#title ⇒ String
Short description of the issue.
Corresponds to the JSON property title
| 280 281 282 | # File 'generated/google/apis/content_v2/classes.rb', line 280 def title @title end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 287 288 289 290 291 292 293 294 | # File 'generated/google/apis/content_v2/classes.rb', line 287 def update!(**args) @country = args[:country] if args.key?(:country) @destination = args[:destination] if args.key?(:destination) @detail = args[:detail] if args.key?(:detail) @id = args[:id] if args.key?(:id) @severity = args[:severity] if args.key?(:severity) @title = args[:title] if args.key?(:title) end |