Class ViberAction
Represents information for Viber action buttons.
public record ViberAction : IEquatable<ViberAction>
- Inheritance
-
ViberAction
- Implements
- Inherited Members
Constructors
ViberAction(string, string)
Represents information for Viber action buttons.
public ViberAction(string Url, string Text)
Parameters
UrlstringA URL which is requested when the action button is clicked.
TextstringText which is rendered on the action button.
Properties
Text
Text which is rendered on the action button.
public string Text { get; init; }
Property Value
Url
A URL which is requested when the action button is clicked.
public string Url { get; init; }