/**
* Webhook Type Definition
* Webhook event definition of the LINE Messaging API
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { ActionResult } from "./actionResult.js";
export type ScenarioResult = {
/**
* Scenario ID executed
*
* @see scenarioId Documentation
*/
scenarioId?: string;
/**
* Revision number of the scenario set containing the executed scenario
*
* @see revision Documentation
*/
revision?: number;
/**
* Timestamp for when execution of scenario action started (milliseconds, LINE app time)
*
* @see startTime Documentation
*/
startTime: number;
/**
* Timestamp for when execution of scenario was completed (milliseconds, LINE app time)
*
* @see endTime Documentation
*/
endTime: number;
/**
* Scenario execution completion status
*
* @see resultCode Documentation
*/
resultCode: string;
/**
* Execution result of individual operations specified in action. Only included when things.result.resultCode is success.
*
* @see actionResults Documentation
*/
actionResults?: Array;
/**
* Data contained in notification.
*
* @see bleNotificationPayload Documentation
*/
bleNotificationPayload?: string;
/**
* Error reason.
*
* @see errorReason Documentation
*/
errorReason?: string;
};
//# sourceMappingURL=scenarioResult.d.ts.map