/** * Finix API */ export declare class ListIdentitiesQueryParams { /** * Specify key to be used for sorting the collection. */ 'sort'?: string; /** * Return every resource created after the cursor value. */ 'afterCursor'?: string; /** * The numbers of items to return. */ 'limit'?: number; /** * Filter by `id`. */ 'id'?: string; /** * Filter where `created_at` is after the given date. */ 'createdAtGte'?: string; /** * Filter where `created_at` is before the given date. */ 'createdAtLte'?: string; /** * Filter by the `default_statement_descriptor`. */ 'defaultStatementDescriptor'?: string; /** * Filter by the full business name. Partial business names are not supported. */ 'businessName'?: string; /** * Filter by the business type. Partial business types are not supported. */ 'businessType'?: string; /** * Filter by the email address or email domain. Partial emails are not supported. */ 'email'?: string; /** * Filter by the first name of the person associated to the `Identity`. */ 'firstName'?: string; /** * Filter by the last name of the person associated to the `Identity`. */ 'lastName'?: string; /** * Filter by the title if available. */ 'title'?: string; /** * Return every resource created before the cursor value. */ 'beforeCursor'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }