/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { SMSDevice } from './SMSDevice'; import type { Pagination } from './Pagination'; /** * * @export * @interface PaginatedSMSDeviceList */ export interface PaginatedSMSDeviceList { /** * * @type {Pagination} * @memberof PaginatedSMSDeviceList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedSMSDeviceList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedSMSDeviceList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedSMSDeviceList interface. */ export declare function instanceOfPaginatedSMSDeviceList(value: object): value is PaginatedSMSDeviceList; export declare function PaginatedSMSDeviceListFromJSON(json: any): PaginatedSMSDeviceList; export declare function PaginatedSMSDeviceListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedSMSDeviceList; export declare function PaginatedSMSDeviceListToJSON(json: any): PaginatedSMSDeviceList; export declare function PaginatedSMSDeviceListToJSONTyped(value?: PaginatedSMSDeviceList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedSMSDeviceList.d.ts.map