interface RootResponse {
    errors?: {
        code: number;
        message: string;
    }[];
    globalObjects?: GlobalObject;
    timeline?: {
        id: string;
        instructions: Instruction[];
    };
}

Properties

errors?: {
    code: number;
    message: string;
}[]

Type declaration

  • code: number
  • message: string
globalObjects?: GlobalObject
timeline?: {
    id: string;
    instructions: Instruction[];
}

Type declaration