/** * My API * API documentation for my Laravel app * * 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 SearchCustomersRequest */ export interface SearchCustomersRequest { /** * * @type {string} * @memberof SearchCustomersRequest */ search?: string | null; /** * * @type {string} * @memberof SearchCustomersRequest */ sortBy?: SearchCustomersRequestSortByEnum; /** * * @type {string} * @memberof SearchCustomersRequest */ sortDirection?: SearchCustomersRequestSortDirectionEnum; /** * * @type {number} * @memberof SearchCustomersRequest */ perPage?: number; /** * * @type {number} * @memberof SearchCustomersRequest */ page?: number; /** * * @type {Array} * @memberof SearchCustomersRequest */ siteId?: Array; /** * * @type {Array} * @memberof SearchCustomersRequest */ type?: Array; /** * * @type {Array} * @memberof SearchCustomersRequest */ signUpType?: Array; /** * * @type {Date} * @memberof SearchCustomersRequest */ beforeCreatedAt?: Date; /** * * @type {Date} * @memberof SearchCustomersRequest */ afterCreatedAt?: Date; /** * * @type {number} * @memberof SearchCustomersRequest */ relatedId?: number; /** * * @type {string} * @memberof SearchCustomersRequest */ relatedType?: string; /** * * @type {boolean} * @memberof SearchCustomersRequest */ includesRelations?: boolean; } /** * @export */ export declare const SearchCustomersRequestSortByEnum: { readonly Id: "id"; readonly NetsuiteSyncNetsuiteId: "netsuiteSync-netsuite_id"; readonly CreatedAt: "created_at"; readonly UpdatedAt: "updated_at"; readonly UserFirstName: "user-first_name"; readonly UserLastName: "user-last_name"; readonly UserEmail: "user-email"; readonly Type: "type"; readonly SignUpType: "sign_up_type"; }; export type SearchCustomersRequestSortByEnum = typeof SearchCustomersRequestSortByEnum[keyof typeof SearchCustomersRequestSortByEnum]; /** * @export */ export declare const SearchCustomersRequestSortDirectionEnum: { readonly Asc: "asc"; readonly Desc: "desc"; }; export type SearchCustomersRequestSortDirectionEnum = typeof SearchCustomersRequestSortDirectionEnum[keyof typeof SearchCustomersRequestSortDirectionEnum]; /** * Check if a given object implements the SearchCustomersRequest interface. */ export declare function instanceOfSearchCustomersRequest(value: object): value is SearchCustomersRequest; export declare function SearchCustomersRequestFromJSON(json: any): SearchCustomersRequest; export declare function SearchCustomersRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchCustomersRequest; export declare function SearchCustomersRequestToJSON(json: any): SearchCustomersRequest; export declare function SearchCustomersRequestToJSONTyped(value?: SearchCustomersRequest | null, ignoreDiscriminator?: boolean): any;