Base interface for all Payload interfaces. Used as part of the MakeRequestOptions to simplify payload definitions.

interface ReleasePayloadV2 {
    entities: BaseCollection<{
        entity: Link<Entity>;
    } & ReleaseValidatePayload>;
    sys?: {
        schemaVersion: "Release.v2";
        type: "Release";
    };
    title: string;
}

Hierarchy (view full)

Properties

Properties

entities: BaseCollection<{
    entity: Link<Entity>;
} & ReleaseValidatePayload>
sys?: {
    schemaVersion: "Release.v2";
    type: "Release";
}
title: string