Interface OptInResponse

interface OptInResponse {
    error?: string;
    message?: string;
    status: "failed" | "success";
    user: string;
}

Hierarchy (View Summary)

Properties

error?: string
message?: string
status: "failed" | "success"
user: string