Class: Google::Apis::FirebasedynamiclinksV1::DynamicLinkWarning

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DynamicLinkWarning

Returns a new instance of DynamicLinkWarning



415
416
417
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 415

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#warning_codeString

The warning code. Corresponds to the JSON property warningCode

Returns:

  • (String)


413
414
415
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 413

def warning_code
  @warning_code
end

#warning_messageString

The warning message to help developers improve their requests. Corresponds to the JSON property warningMessage

Returns:

  • (String)


408
409
410
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 408

def warning_message
  @warning_message
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



420
421
422
423
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 420

def update!(**args)
  @warning_message = args[:warning_message] if args.key?(:warning_message)
  @warning_code = args[:warning_code] if args.key?(:warning_code)
end