Type Alias ExperimentInput

Input for creating this entity

type ExperimentInput = {
    data?: {
        attributes?: {
            description?: EntityDescription;
            name: EntityName;
            spaceId: SpaceId;
        };
        type?: "experiment";
    };
}
Index

Properties

Properties

data?: {
    attributes?: {
        description?: EntityDescription;
        name: EntityName;
        spaceId: SpaceId;
    };
    type?: "experiment";
}

Data container for ExperimentInput

Type declaration