Interface MemberProfile

interface MemberProfile {
    birthYear: string;
    directOrderName: string;
    firstName: string;
    honorificName: string;
    invertedOrderName: string;
    lastName: string;
}

Hierarchy

  • Record<`${
        | "first"
        | "last"
        | "honorific"
        | `${"direct" | "inverted"}Order`}Name`, string>
    • MemberProfile

Properties

birthYear: string
directOrderName: string
firstName: string
honorificName: string
invertedOrderName: string
lastName: string