An entity representing the data required to create a Customer Support Request.

interface CustomerSupportRequest {
    displayName?: string;
    emailId?: string;
    extensionName?: string;
    extensionURL?: string;
    message?: string;
    publisherName?: string;
    reason?: string;
    reCaptchaToken?: string;
    reporterVSID?: string;
    review?: Review;
    sourceLink?: string;
}

Properties

displayName?: string

Display name of extension in concern

emailId?: string

Email of user making the support request

extensionName?: string

Extension name

extensionURL?: string

Link to the extension details page

message?: string

User-provided support request message.

publisherName?: string

Publisher name

reason?: string

Reason for support request

reCaptchaToken?: string

ReCaptcha Token

reporterVSID?: string

VSID of the user making the support request

review?: Review

Review under concern

sourceLink?: string

The UI source through which the request was made