Class: Google::Apis::FirebasedynamiclinksV1::CreateManagedShortLinkRequest

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

Request to create a managed Short Dynamic Link.

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) ⇒ CreateManagedShortLinkRequest

Returns a new instance of CreateManagedShortLinkRequest.



127
128
129
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 127

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

Instance Attribute Details

Information about a Dynamic Link. Corresponds to the JSON property dynamicLinkInfo



98
99
100
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 98

def dynamic_link_info
  @dynamic_link_info
end

Full long Dynamic Link URL with desired query parameters specified. For example, "https://sample.app.goo.gl/?link=http://www.google.com&apn=com.sample", Learn more. Corresponds to the JSON property longDynamicLink

Returns:

  • (String)


107
108
109
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 107

def long_dynamic_link
  @long_dynamic_link
end

#nameString

Link name to associate with the link. It's used for marketer to identify manually-created links in the Firebase console (https://console.firebase.google.com/). Links must be named to be tracked. Corresponds to the JSON property name

Returns:

  • (String)


115
116
117
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 115

def name
  @name
end

#sdk_versionString

Google SDK version. Version takes the form "$major.$minor.$patch" Corresponds to the JSON property sdkVersion

Returns:

  • (String)


120
121
122
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 120

def sdk_version
  @sdk_version
end

#suffixGoogle::Apis::FirebasedynamiclinksV1::Suffix

Short Dynamic Link suffix. Corresponds to the JSON property suffix



125
126
127
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 125

def suffix
  @suffix
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



132
133
134
135
136
137
138
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 132

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)
  @name = args[:name] if args.key?(:name)
  @sdk_version = args[:sdk_version] if args.key?(:sdk_version)
  @suffix = args[:suffix] if args.key?(:suffix)
end