SaveListActivityMutation is an interface representing the variables to save a list activity. It includes the customList and type variables of the list activity to save.

interface SaveListActivityVariables {
    asHtml?: boolean;
    id: number;
    locked?: boolean;
}

Properties

Properties

asHtml?: boolean

asHtml is a boolean representing whether the list activity is in HTML format.

id: number

id is a number representing the id of the list activity.

locked?: boolean

locked is a boolean representing whether the list activity is locked.