/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * 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 { VerificationSubmission } from './VerificationSubmission'; /** * A paginated list of VerificationSubmission objects * @export * @interface VerificationPagedResults */ export interface VerificationPagedResults { /** * The list of results for this page * @type {Array} * @memberof VerificationPagedResults */ results?: Array; /** * The total number of results * @type {number} * @memberof VerificationPagedResults */ totalNumberOfResults?: number; } /** * Check if a given object implements the VerificationPagedResults interface. */ export declare function instanceOfVerificationPagedResults(value: object): value is VerificationPagedResults; export declare function VerificationPagedResultsFromJSON(json: any): VerificationPagedResults; export declare function VerificationPagedResultsFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerificationPagedResults; export declare function VerificationPagedResultsToJSON(json: any): VerificationPagedResults; export declare function VerificationPagedResultsToJSONTyped(value?: VerificationPagedResults | null, ignoreDiscriminator?: boolean): any;