Interface Automation
interface Automation {
action: {
actionKey: string;
appKey: string;
credentialKey: string;
inputParams: { [x: string]: any; };
};
active: boolean;
blueprintKey: null | string;
consumerKey: string;
createdAt: Date;
customData: null | {};
id: string;
live: boolean;
name: string;
status: "INVALID" | "READY";
trigger: {
appKey: string;
credentialKey: string;
inputParams: { [x: string]: any; };
subscription?: { refreshedAt?: string | undefined; data?: { [x: string]: any; } | undefined; createdAt: string; };
triggerKey: string;
};
updatedAt: Date;
}
action: {
actionKey: string;
appKey: string;
credentialKey: string;
inputParams: { [x: string]: any; };
};
active: boolean;
blueprintKey: null | string;
consumerKey: string;
createdAt: Date;
customData: null | {};
id: string;
live: boolean;
name: string;
status: "INVALID" | "READY";
trigger: {
appKey: string;
credentialKey: string;
inputParams: { [x: string]: any; };
subscription?: { refreshedAt?: string | undefined; data?: { [x: string]: any; } | undefined; createdAt: string; };
triggerKey: string;
};
updatedAt: Date;
}
Hierarchy
- Static<typeof tAutomation>
- Automation
Index
Properties
action
action: {
actionKey: string;
appKey: string;
credentialKey: string;
inputParams: { [x: string]: any; };
} = tAutomationAction
actionKey: string;
appKey: string;
credentialKey: string;
inputParams: { [x: string]: any; };
} = tAutomationAction
Type declaration
action
Key : stringapp
Key : stringcredential
Key : stringinput
Params : { [x: string]: any; }
active
active: boolean = ...
blueprintKey
blueprintKey : null | string = ...
consumerKey
consumerKey : string = ...
createdAt
createdAt : Date = ...
customData
customData : null | {} = ...
Type declaration
id
id: string = ...
live
live: boolean = ...
name
name: string = ...
status
status: "INVALID" | "READY" = ...
trigger
trigger: {
appKey: string;
credentialKey: string;
inputParams: { [x: string]: any; };
subscription?: { refreshedAt?: string | undefined; data?: { [x: string]: any; } | undefined; createdAt: string; };
triggerKey: string;
} = tAutomationTrigger
appKey: string;
credentialKey: string;
inputParams: { [x: string]: any; };
subscription?: { refreshedAt?: string | undefined; data?: { [x: string]: any; } | undefined; createdAt: string; };
triggerKey: string;
} = tAutomationTrigger
Type declaration
app
Key : stringcredential
Key : stringinput
Params : { [x: string]: any; }Optional
subscription?: { refreshedAt?: string | undefined; data?: { [x: string]: any; } | undefined; createdAt: string; }trigger
Key : string
updatedAt
updatedAt : Date = ...