Interface CreateDeeplinkArgs

The argument object for createDeeplink

The domain used in the protocol

The actions name

The payload for the action. The payload will be encoded according the encoderFormat parameter

The selected format for the payload encoding

interface CreateDeeplinkArgs {
    action?: string;
    domain?: string;
    encoderFormat?: EncoderFormat;
    payload?: any;
}

Properties

action?: string
domain?: string
encoderFormat?: EncoderFormat
payload?: any