AcceptInviteData

The AcceptInviteData interface defines the data required to accept an invitation.

The AcceptInviteData interface specifies the data structure expected by the acceptInvite Firebase Cloud Function when a user attempts to accept a subscription invitation.

Interface Definition

export interface AcceptInviteData {
    inviteId: string;
}

Properties

PropertyTypeDescription
inviteIdstringThe unique ID of the invitation to accept.

Usage

This interface is used as the input parameter for the acceptInvite Cloud Function.


Last modified August 17, 2025: cloud functions doc (4817130)