Type Alias UserPostSchema

{
* assignedRoles: [
* {
* name: "My Custom Role"
* }
* ],
* email: "john.smith@corp.example",
* name: "John Smith",
* picture: "https://corp.example/docs/jsmith.png",
* status: "invited",
* subject: "1234asdasa6789",
* tenantId: "q3VRZ4YMixRaLKEPhkZWM-XMIDN7cO8f"
* }
type UserPostSchema = {
    assignedRoles?: RefIDs | RefNames;
    email?: string;
    name?: string;
    picture?: string;
    status?: "invited";
    subject: string;
    tenantId?: string;
}
Index

Properties

assignedRoles?: RefIDs | RefNames

The roles to assign to the user.

email?: string
name?: string
picture?: string
status?: "invited"
subject: string
tenantId?: string