/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.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 type { RuleActionDto } from './RuleActionDto'; /** * * @export * @interface FastlyRuleActionDto */ export interface FastlyRuleActionDto extends RuleActionDto { /** * The API key to grant access to Squidex. * @type {string} * @memberof FastlyRuleActionDto */ apiKey: string; /** * The ID of the fastly service. * @type {string} * @memberof FastlyRuleActionDto */ serviceId: string; } /** * Check if a given object implements the FastlyRuleActionDto interface. */ export declare function instanceOfFastlyRuleActionDto(value: any): value is FastlyRuleActionDto; export declare function FastlyRuleActionDtoFromJSON(json: any): FastlyRuleActionDto; export declare function FastlyRuleActionDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): FastlyRuleActionDto; export declare function FastlyRuleActionDtoToJSON(value?: FastlyRuleActionDto | null, _ignoreDiscriminator?: boolean): any;