import type { UserAccountRole } from './UserAccountRole'; /** * * @export * @interface UserAccountRoleListResponse */ export interface UserAccountRoleListResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof UserAccountRoleListResponse */ readonly data?: Array; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof UserAccountRoleListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof UserAccountRoleListResponse */ readonly limit?: number; } /** * Check if a given object implements the UserAccountRoleListResponse interface. */ export declare function instanceOfUserAccountRoleListResponse(value: object): value is UserAccountRoleListResponse; export declare function UserAccountRoleListResponseFromJSON(json: any): UserAccountRoleListResponse; export declare function UserAccountRoleListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserAccountRoleListResponse; export declare function UserAccountRoleListResponseToJSON(json: any): UserAccountRoleListResponse; export declare function UserAccountRoleListResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;