interface Partner {
    contactEmail: string;
    createdAt?: Date;
    id: string;
    logoUrl: string;
    name: string;
    portalUrl: string;
    updatedAt?: Date;
}

Properties

contactEmail: string

Contact email address of partner.

createdAt?: Date

Creation date of the partner.

id: string

Unique identifier of the partner.

logoUrl: string

Image URL of the partner's logo.

name: string

Name of the partner.

portalUrl: string

URL of the partner's portal.

updatedAt?: Date

Last modification date of the partner.