Interface ContributorInfo

interface ContributorInfo {
    id: string;
    firstName?: null | string;
    lastName?: null | string;
    phone?: null | string;
    email?: null | string;
}

Properties

id: string
firstName?: null | string
lastName?: null | string
phone?: null | string
email?: null | string