Organization User

{
    email_confirmed: boolean;
    role: OrganizationUserRoleEnum;

    job_role?: string;  //50 char
    department?: string; //50 char
    about_me?: string;   //150 char

    status_icon_url?: string;    //2000 char
    status_message?: string;      //100 char
    status_out_of_office = false;
    status_clear_at?: Date;

    cost_per_hour: number;
    billable_rate_per_hour: number;

    capacity = new CapacityModel();

    created_at: Date;
    modified_at: Date;
}

OrganizationUserRoleEnum

CapacityModel

Last updated