UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

42 lines (41 loc) 1.29 kB
/** * OpenPay API * super charge your subscription management. * * The version of the OpenAPI document: 1.2.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Represents a string filter with various comparison options. * * Attributes (Only one of these should be populated or else....): * - ilike (Optional[str]): Field values should be ilike to this value. * @export * @interface SearchFilter */ export interface SearchFilter { /** * * @type {string} * @memberof SearchFilter */ eq?: string | null; /** * * @type {string} * @memberof SearchFilter */ ilike?: string | null; } /** * Check if a given object implements the SearchFilter interface. */ export declare function instanceOfSearchFilter(value: object): value is SearchFilter; export declare function SearchFilterFromJSON(json: any): SearchFilter; export declare function SearchFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchFilter; export declare function SearchFilterToJSON(json: any): SearchFilter; export declare function SearchFilterToJSONTyped(value?: SearchFilter | null, ignoreDiscriminator?: boolean): any;