export default interface StitchUserProfile {
    readonly name?: string;
    readonly email?: string;
    readonly pictureUrl?: string;
    readonly firstName?: string;
    readonly lastName?: string;
    readonly gender?: string;
    readonly birthday?: string;
    readonly minAge?: string;
    readonly maxAge?: string;
}
