@shortcut/client
    Preparing search index...

    Interface StoryContentsTask

    interface StoryContentsTask {
        complete?: boolean;
        description: string;
        external_id?: null | string;
        owner_ids?: string[];
        position?: number;
    }
    Index

    Properties

    complete?: boolean

    True/false boolean indicating whether the Task has been completed.

    description: string

    Full text of the Task.

    external_id?: null | string

    This field can be set to another unique ID. In the case that the Task has been imported from another tool, the ID in the other tool can be indicated here.

    owner_ids?: string[]

    An array of UUIDs of the Owners of this Task.

    position?: number

    The number corresponding to the Task's position within a list of Tasks on a Story.

    int64