@apideck/node
Version:
Apideck Node.js SDK
46 lines (45 loc) • 1.45 kB
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface WebhookEventLogAttempts
*/
export interface WebhookEventLogAttempts {
/**
* ISO Date and time when the request was made.
* @type {string}
* @memberof WebhookEventLogAttempts
*/
timestamp?: string;
/**
* Number of attempts webhook endpoint was called before a success was returned or eventually failed
* @type {number}
* @memberof WebhookEventLogAttempts
*/
execution_attempt?: number;
/**
* HTTP Status code that was returned.
* @type {number}
* @memberof WebhookEventLogAttempts
*/
status_code?: number;
/**
* Whether or not the request was successful.
* @type {boolean}
* @memberof WebhookEventLogAttempts
*/
success?: boolean;
}
export declare function WebhookEventLogAttemptsFromJSON(json: any): WebhookEventLogAttempts;
export declare function WebhookEventLogAttemptsFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookEventLogAttempts;
export declare function WebhookEventLogAttemptsToJSON(value?: WebhookEventLogAttempts | null): any;