Interface PushNotificationAuthenticationMethod

interface PushNotificationAuthenticationMethod {
    confirmed: boolean;
    created_at: string;
    id: string;
    last_auth_at?: string;
    name?: string;
    type: "push-notification";
    usage: ("primary" | "secondary")[];
}

Hierarchy

  • AuthenticationMethodWithMetadata
    • PushNotificationAuthenticationMethod

Properties

confirmed: boolean
created_at: string
id: string
last_auth_at?: string
name?: string
type: "push-notification"
usage: ("primary" | "secondary")[]