/** * Kinde Management API * Provides endpoints to manage your Kinde Businesses * * The version of the OpenAPI document: 1 * Contact: support@kinde.com * * 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 { UpdateAPIApplicationsRequestApplicationsInner } from './UpdateAPIApplicationsRequestApplicationsInner.js'; /** * * @export * @interface UpdateAPIApplicationsRequest */ export interface UpdateAPIApplicationsRequest { /** * * @type {Array} * @memberof UpdateAPIApplicationsRequest */ applications: Array; } /** * Check if a given object implements the UpdateAPIApplicationsRequest interface. */ export declare function instanceOfUpdateAPIApplicationsRequest(value: object): boolean; export declare function UpdateAPIApplicationsRequestFromJSON(json: any): UpdateAPIApplicationsRequest; export declare function UpdateAPIApplicationsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateAPIApplicationsRequest; export declare function UpdateAPIApplicationsRequestToJSON(value?: UpdateAPIApplicationsRequest | null): any;