Interface PlatformUser

interface PlatformUser {
    id: string;
    email: string;
    name: string;
    trialRequested: boolean;
}

Properties

id: string
email: string
name: string
trialRequested: boolean