Class: Google::Apis::FirebasedynamiclinksV1::Suffix
- Inherits:
-
Object
- Object
- Google::Apis::FirebasedynamiclinksV1::Suffix
- 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
Short Dynamic Link suffix.
Instance Attribute Summary collapse
-
#custom_suffix ⇒ String
Only applies to Option.CUSTOM.
-
#option ⇒ String
Suffix option.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Suffix
constructor
A new instance of Suffix.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Suffix
Returns a new instance of Suffix
1037 1038 1039 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 1037 def initialize(**args) update!(**args) end |
Instance Attribute Details
#custom_suffix ⇒ String
Only applies to Option.CUSTOM.
Corresponds to the JSON property customSuffix
1030 1031 1032 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 1030 def custom_suffix @custom_suffix end |
#option ⇒ String
Suffix option.
Corresponds to the JSON property option
1035 1036 1037 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 1035 def option @option end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1042 1043 1044 1045 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 1042 def update!(**args) @custom_suffix = args[:custom_suffix] if args.key?(:custom_suffix) @option = args[:option] if args.key?(:option) end |