/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 ListVisitorAttributeKeysResponse */ export interface ListVisitorAttributeKeysResponse { /** * Distinct selectable visitor attribute keys, including reserved system fields such as $email and $phone. * @type {Array} * @memberof ListVisitorAttributeKeysResponse */ attributeKeys?: Array; } /** * Check if a given object implements the ListVisitorAttributeKeysResponse interface. */ export declare function instanceOfListVisitorAttributeKeysResponse(value: object): value is ListVisitorAttributeKeysResponse; export declare function ListVisitorAttributeKeysResponseFromJSON(json: any): ListVisitorAttributeKeysResponse; export declare function ListVisitorAttributeKeysResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListVisitorAttributeKeysResponse; export declare function ListVisitorAttributeKeysResponseToJSON(json: any): ListVisitorAttributeKeysResponse; export declare function ListVisitorAttributeKeysResponseToJSONTyped(value?: ListVisitorAttributeKeysResponse | null, ignoreDiscriminator?: boolean): any;