/** * * Copyright © 2025 Ping Identity Corporation. All right reserved. * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file for details. * **/ export type Maybe = T | null | undefined; export interface StringDict { [name: string]: T; }