import type { constants_ApiObject } from './constants_ApiObject'; export type marketplace_application_Task = { /** * Created is the RFC 3339 timestamp at which the object was created. */ createdAt?: string; /** * Deleted is true when the object has been deleted; present only on delete responses. */ deleted?: boolean; /** * Description is the optional long-form details of the task. */ description?: string; /** * ID is the unique identifier of the object. */ id?: string; /** * Name is the human-readable title of the task. */ name?: string; /** * Object is the type of the object (e.g. "client", "company"). */ object?: constants_ApiObject; /** * Updated is the RFC 3339 timestamp at which the object was last updated. */ updatedAt?: string; };