Struct google_firebasedynamiclinks1::CreateManagedShortLinkRequest[][src]

pub struct CreateManagedShortLinkRequest {
    pub dynamic_link_info: Option<DynamicLinkInfo>,
    pub sdk_version: Option<String>,
    pub long_dynamic_link: Option<String>,
    pub suffix: Option<Suffix>,
    pub name: Option<String>,
}

Request to create a managed Short Dynamic Link.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

Information about the Dynamic Link to be shortened. Learn more.

Google SDK version. Version takes the form "$major.$minor.$patch"

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.

Short Dynamic Link suffix. Optional.

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.

Trait Implementations

impl Default for CreateManagedShortLinkRequest
[src]

Returns the "default value" for a type. Read more

impl Clone for CreateManagedShortLinkRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CreateManagedShortLinkRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for CreateManagedShortLinkRequest
[src]

Auto Trait Implementations