/** * 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 UpdateOrganizationPropertiesRequest */ export interface UpdateOrganizationPropertiesRequest { /** * Property keys and values * @type {object} * @memberof UpdateOrganizationPropertiesRequest */ properties: object; } /** * Check if a given object implements the UpdateOrganizationPropertiesRequest interface. */ export declare function instanceOfUpdateOrganizationPropertiesRequest(value: object): boolean; export declare function UpdateOrganizationPropertiesRequestFromJSON(json: any): UpdateOrganizationPropertiesRequest; export declare function UpdateOrganizationPropertiesRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateOrganizationPropertiesRequest; export declare function UpdateOrganizationPropertiesRequestToJSON(value?: UpdateOrganizationPropertiesRequest | null): any;