/* tslint:disable */ /* eslint-disable */ /** * Emil PublicAPI * The Emil Public API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * 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 BookingFunnelClass */ export interface BookingFunnelClass { /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof BookingFunnelClass */ 'id': number; /** * Unique identifier for the object. * @type {string} * @memberof BookingFunnelClass */ 'code': string; /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof BookingFunnelClass */ 'parentId': number; /** * Booking Funnel name. * @type {string} * @memberof BookingFunnelClass */ 'name': string; /** * Booking Funnel snippet. * @type {string} * @memberof BookingFunnelClass */ 'jsCode': string; /** * Booking Funnel JSON steps configuration. * @type {object} * @memberof BookingFunnelClass */ 'stepsConfig': object; /** * Booking Funnel custom CSS. * @type {string} * @memberof BookingFunnelClass */ 'css': string; /** * Booking Funnel logo url. * @type {string} * @memberof BookingFunnelClass */ 'logoPath': string; /** * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id. * @type {string} * @memberof BookingFunnelClass */ 'productSlug': string; /** * Product Version ID. * @type {number} * @memberof BookingFunnelClass */ 'productVersionId': number; /** * Booking Funnel version. * @type {number} * @memberof BookingFunnelClass */ 'version': number; /** * Time at which the object was created. * @type {string} * @memberof BookingFunnelClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof BookingFunnelClass */ 'updatedAt': string; }