Interface UserInterface

CandorUser interface.

interface UserInterface {
    avatar: undefined | string;
    bio: undefined | string;
    contactEmail: undefined | string;
    flags: string[];
    freelancerId: undefined | string;
    freelancerProfile: undefined | FreelacerProfile;
    type: UserType;
    username: string;
}

Implemented by

Properties

avatar: undefined | string
bio: undefined | string
contactEmail: undefined | string
flags: string[]
freelancerId: undefined | string
freelancerProfile: undefined | FreelacerProfile
type: UserType
username: string