Interface Member

interface Member {
    address: string;
    custom_fields?: CustomField[];
    email: null | string;
    emergency_contacts: EmergencyContact[];
    group_ids: null | number[];
    homephone: string;
    id: number;
    joined_at: string;
    mobilephone: string;
    name: string;
    notes: null | string;
    position: string;
    ref: string;
    status: MemberStatus;
    type: EntityType;
    workphone: string;
}

Hierarchy

  • Entity
    • Member

Properties

address: string
custom_fields?: CustomField[]
email: null | string
emergency_contacts: EmergencyContact[]
group_ids: null | number[]
homephone: string
id: number
joined_at: string
mobilephone: string
name: string
notes: null | string
position: string
ref: string
status: MemberStatus
type: EntityType
workphone: string