Class: Google::Apis::FirebasedynamiclinksV1::DynamicLinkWarning
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::FirebasedynamiclinksV1::DynamicLinkWarning
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/firebasedynamiclinks_v1/classes.rb,
generated/google/apis/firebasedynamiclinks_v1/representations.rb,
generated/google/apis/firebasedynamiclinks_v1/representations.rb 
Overview
Dynamic Links warning messages.
Instance Attribute Summary collapse
- 
  
    
      #warning_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The warning code.
 - 
  
    
      #warning_document_link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The document describing the warning, and helps resolve.
 - 
  
    
      #warning_message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The warning message to help developers improve their requests.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DynamicLinkWarning 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of DynamicLinkWarning.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DynamicLinkWarning
Returns a new instance of DynamicLinkWarning
      456 457 458  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 456 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#warning_code ⇒ String
The warning code.
Corresponds to the JSON property warningCode
      444 445 446  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 444 def warning_code @warning_code end  | 
  
#warning_document_link ⇒ String
The document describing the warning, and helps resolve.
Corresponds to the JSON property warningDocumentLink
      449 450 451  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 449 def warning_document_link @warning_document_link end  | 
  
#warning_message ⇒ String
The warning message to help developers improve their requests.
Corresponds to the JSON property warningMessage
      454 455 456  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 454 def @warning_message end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      461 462 463 464 465  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 461 def update!(**args) @warning_code = args[:warning_code] if args.key?(:warning_code) @warning_document_link = args[:warning_document_link] if args.key?(:warning_document_link) @warning_message = args[:warning_message] if args.key?(:warning_message) end  |