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

    Interface FeatureRequestSubmissionResult

    Server response returned after creating a new feature request.

    const result: FeatureRequestSubmissionResult = {
    featureRequestId: 'fr_abc456',
    pending: false,
    };
    interface FeatureRequestSubmissionResult {
        featureRequestId: string;
        pending: boolean;
    }
    Index
    featureRequestId: string

    Unique ID of the newly created feature request.

    pending: boolean

    True if the request is queued for moderation before appearing publicly.