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

interface ReleasePayload {
    entities: BaseCollection<Link<Entity>>;
    sys?: {
        schemaVersion?: "Release.v1";
        type: "Release";
    };
    title: string;
}

Hierarchy (view full)

Properties

Properties

entities: BaseCollection<Link<Entity>>
sys?: {
    schemaVersion?: "Release.v1";
    type: "Release";
}
title: string