Type Alias $ClientChangelogPayload<ExtArgs>

$ClientChangelogPayload<ExtArgs>: {
    composites: {};
    name: "ClientChangelog";
    objects: {
        client: $ClientPayload<ExtArgs> | null;
    };
    scalars: GetPayloadResult<{
        changes: string[];
        clientId: string;
        date: Date;
        dbId: string;
        identifier: string;
        isPublic: boolean;
        thumbnail: string | null;
        title: string;
    }, ExtArgs["result"]["clientChangelog"]>;
}

Type Parameters