Interface MemberAwards

interface MemberAwards {
    createdAt: string;
    custom_fields?: CustomField[];
    endsAt: null | string;
    entityType: EntityType;
    id: number;
    member: { id: null | number; resourceType: null | string };
    owner: { id: null | number; resourceType: null | string };
    qualification: { id: null | number; resourceType: null | string };
    resourceType: string;
    startsAt: null | string;
    updatedAt: string;
}

Hierarchy

  • Entity
    • MemberAwards

Properties

createdAt: string
custom_fields?: CustomField[]
endsAt: null | string
entityType: EntityType
id: number
member: { id: null | number; resourceType: null | string }
owner: { id: null | number; resourceType: null | string }
qualification: { id: null | number; resourceType: null | string }
resourceType: string
startsAt: null | string
updatedAt: string