/** * 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. */ /** * * @export * @interface UpdateApplicationRequest */ export interface UpdateApplicationRequest { /** * The application's name. * @type {string} * @memberof UpdateApplicationRequest */ name?: string; /** * The application's language key. * @type {string} * @memberof UpdateApplicationRequest */ languageKey?: string; /** * The application's logout uris. * @type {Array} * @memberof UpdateApplicationRequest */ logoutUris?: Array; /** * The application's redirect uris. * @type {Array} * @memberof UpdateApplicationRequest */ redirectUris?: Array; } /** * Check if a given object implements the UpdateApplicationRequest interface. */ export declare function instanceOfUpdateApplicationRequest(value: object): boolean; export declare function UpdateApplicationRequestFromJSON(json: any): UpdateApplicationRequest; export declare function UpdateApplicationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateApplicationRequest; export declare function UpdateApplicationRequestToJSON(value?: UpdateApplicationRequest | null): any;