class Google::Apis::FirebasedynamiclinksV1::CreateShortDynamicLinkResponse
Response to create a short Dynamic Link.
Attributes
preview_link[RW]
Preview link to show the link flow chart. (debug info.) Corresponds to the JSON property `previewLink` @return [String]
short_link[RW]
Short Dynamic Link value. e.g. abcd.app.goo.gl/wxyz Corresponds to the JSON property `shortLink` @return [String]
warning[RW]
Information about potential warnings on link creation. Corresponds to the JSON property `warning` @return [Array<Google::Apis::FirebasedynamiclinksV1::DynamicLinkWarning>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/firebasedynamiclinks_v1/classes.rb, line 228 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 233 def update!(**args) @preview_link = args[:preview_link] if args.key?(:preview_link) @short_link = args[:short_link] if args.key?(:short_link) @warning = args[:warning] if args.key?(:warning) end