forked from jsnbuchanan/crowd-funder-for-time-pwa
26 lines
584 B
TypeScript
26 lines
584 B
TypeScript
import { GiveSummaryRecord, GiveVerifiableCredential } from "interfaces";
|
|
|
|
export interface GiveRecordWithContactInfo extends GiveSummaryRecord {
|
|
jwtId: string;
|
|
fullClaim: GiveVerifiableCredential;
|
|
giver: {
|
|
known: boolean;
|
|
displayName: string;
|
|
profileImageUrl?: string;
|
|
};
|
|
issuer: {
|
|
known: boolean;
|
|
displayName: string;
|
|
profileImageUrl?: string;
|
|
};
|
|
receiver: {
|
|
known: boolean;
|
|
displayName: string;
|
|
profileImageUrl?: string;
|
|
};
|
|
providerPlanName?: string;
|
|
recipientProjectName?: string;
|
|
description: string;
|
|
image?: string;
|
|
}
|