class Google::Apis::FirebasedynamiclinksV1::DynamicLinkWarning

Dynamic Links warning messages.

Attributes

warning_code[RW]

The warning code. Corresponds to the JSON property `warningCode` @return [String]

warning_message[RW]

The warning message to help developers improve their requests. Corresponds to the JSON property `warningMessage` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebasedynamiclinks_v1/classes.rb, line 462
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firebasedynamiclinks_v1/classes.rb, line 467
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