/** * Dashboard API * Dashboard API documentation * * 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. */ /** * * @export * @interface TurnkeyStamp */ export interface TurnkeyStamp { /** * * @type {string} * @memberof TurnkeyStamp */ stampHeaderName: string; /** * Turnkey API stamp header value for request authentication * @type {string} * @memberof TurnkeyStamp */ stampHeaderValue: string; } export declare function TurnkeyStampFromJSON(json: any): TurnkeyStamp; export declare function TurnkeyStampFromJSONTyped(json: any, ignoreDiscriminator: boolean): TurnkeyStamp; export declare function TurnkeyStampToJSON(value?: TurnkeyStamp | null): any;