/** * OpenAPI definition * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ApiKeyScopeRead */ export interface ApiKeyScopeRead { /** * * @type {string} * @memberof ApiKeyScopeRead */ organizationId?: string; /** * * @type {string} * @memberof ApiKeyScopeRead */ projectId?: string; /** * * @type {string} * @memberof ApiKeyScopeRead */ environmentId?: string; } /** * Check if a given object implements the ApiKeyScopeRead interface. */ export declare function instanceOfApiKeyScopeRead(value: object): value is ApiKeyScopeRead; export declare function ApiKeyScopeReadFromJSON(json: any): ApiKeyScopeRead; export declare function ApiKeyScopeReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiKeyScopeRead; export declare function ApiKeyScopeReadToJSON(json: any): ApiKeyScopeRead; export declare function ApiKeyScopeReadToJSONTyped(value?: ApiKeyScopeRead | null, ignoreDiscriminator?: boolean): any;