fieldnotesai
    Preparing search index...

    Provides functionality for create client input.

    interface CreateClientInput {
        birth_country?: string | null;
        dob?: string | null;
        email?: string | null;
        emergency_contact_location?: string | null;
        emergency_contact_name?: string | null;
        emergency_contact_phone?: string | null;
        emergency_contact_relationship?: string | null;
        full_name: string;
        indigenous_identity?: boolean | null;
        message_visibility_concern?: boolean | null;
        number_of_children?: number | null;
        phone_number?: string | null;
        preferred_contact_method?: string | null;
        preferred_name?: string | null;
        recording_trash_retention_days: number;
        year_of_arrival?: number | null;
    }
    Index

    Properties

    birth_country?: string | null
    dob?: string | null
    email?: string | null

    Optional fields that can be filled in at creation time

    emergency_contact_location?: string | null
    emergency_contact_name?: string | null
    emergency_contact_phone?: string | null
    emergency_contact_relationship?: string | null
    full_name: string

    Required - client's legal full name

    indigenous_identity?: boolean | null
    message_visibility_concern?: boolean | null
    number_of_children?: number | null
    phone_number?: string | null
    preferred_contact_method?: string | null
    preferred_name?: string | null
    recording_trash_retention_days: number
    year_of_arrival?: number | null