Type alias EmailParticipantPartsFragment
 
EmailParticipantPartsFragment: { 
    __typename: "EmailParticipant"; 
    email: string; 
    emailActor: { 
        __typename: "CustomerEmailActor"; 
        customerId: string; 
    } | { 
        __typename: "DeletedCustomerEmailActor"; 
        customerId: string; 
    } | { 
        __typename: "SupportEmailAddressEmailActor"; 
        supportEmailAddress: string; 
    } | { 
        __typename: "UserEmailActor"; 
        userId: string; 
    } | null; 
    name: string | null; 
}
Type declaration
- 
__typename: "EmailParticipant"
- 
email: string
- 
emailActor: { 
 __typename: "CustomerEmailActor";
 customerId: string;
 } | {
 __typename: "DeletedCustomerEmailActor";
 customerId: string;
 } | {
 __typename: "SupportEmailAddressEmailActor";
 supportEmailAddress: string;
 } | {
 __typename: "UserEmailActor";
 userId: string;
 } | null
- 
name: string | null