class Google::Apis::FirebasedynamiclinksV1::CreateShortDynamicLinkRequest

Request to create a short Dynamic Link.

Attributes

sdk_version[RW]

Google SDK version. Version takes the form “$major.$minor.$patch” Corresponds to the JSON property `sdkVersion` @return [String]

suffix[RW]

Short Dynamic Link suffix. Corresponds to the JSON property `suffix` @return [Google::Apis::FirebasedynamiclinksV1::Suffix]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebasedynamiclinks_v1/classes.rb, line 196
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 201
def update!(**args)
  @dynamic_link_info = args[:dynamic_link_info] if args.key?(:dynamic_link_info)
  @long_dynamic_link = args[:long_dynamic_link] if args.key?(:long_dynamic_link)
  @sdk_version = args[:sdk_version] if args.key?(:sdk_version)
  @suffix = args[:suffix] if args.key?(:suffix)
end