Interface CreatePersonResponse

The CreatePerson response expected from the execution of the object within BambuClient execute.

interface CreatePersonResponse {
    error?: any;
    message: string;
    personId?: string;
}

Properties

error?: any

any error messages that were returned by the request.

message: string

the message response from the request

personId?: string

If the person already exists, the personId is returned.