EntityFileRaw: {
    created_at: DateTime;
    id: number;
    name: string;
    opportunity_id: number | null;
    organization_id: number | null;
    person_id: number | null;
    size: number;
    uploader_id: number;
}

Type declaration

  • created_at: DateTime

    The time when the entity file was created.

  • id: number

    The unique identifier of the entity file object.

  • name: string

    The name of the file.

  • opportunity_id: number | null

    The unique identifier of the opportunity corresponding to the entity file.

  • organization_id: number | null

    The unique identifier of the organization corresponding to the entity file.

  • person_id: number | null

    The unique identifier of the person corresponding to the entity file.

  • size: number

    The size of the file in bytes.

  • uploader_id: number

    The unique identifier of the user who created the entity file.