interface Animal {
    bornAt: string;
    breed: string;
    countRollingHours: number;
    createdAt: string;
    custom_fields?: CustomField[];
    entityType: EntityType;
    id: number;
    joinedAt: string;
    leftAt: null | string;
    name: string;
    notes: string;
    ref: string;
    resourceType: string;
    status: string;
    type: string;
    updatedAt: string;
}

Hierarchy

  • Entity
    • Animal

Properties

bornAt: string
breed: string
countRollingHours: number
createdAt: string
custom_fields?: CustomField[]
entityType: EntityType
id: number
joinedAt: string
leftAt: null | string
name: string
notes: string
ref: string
resourceType: string
status: string
type: string
updatedAt: string