CupThread React Native & Expo SDK - v0.1.0
    Preparing search index...

    Interface FeedbackSubmissionResult

    Server response returned after successfully recording a feedback submission.

    const result: FeedbackSubmissionResult = {
    submissionId: 'sub_99af2810',
    forwardedToGithub: true,
    githubDiscussionId: 'D_kwDO...',
    githubDiscussionUrl: 'https://github.com/org/repo/discussions/42',
    };
    interface FeedbackSubmissionResult {
        forwardedToGithub: boolean;
        githubDiscussionId?: string;
        githubDiscussionUrl?: string;
        submissionId: string;
        warning?: string;
    }
    Index
    forwardedToGithub: boolean

    Whether the submission was automatically synchronized to a linked GitHub Repository/Discussion.

    githubDiscussionId?: string

    GitHub Discussion node ID if GitHub integration is enabled for the app.

    githubDiscussionUrl?: string

    Direct web URL to the created GitHub Discussion if applicable.

    submissionId: string

    Unique identifier assigned to the submission.

    warning?: string

    Non-fatal warning message from the server if processing encountered partial issues.