/** * 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 CreateOrganizationResponseOrganization */ export interface CreateOrganizationResponseOrganization { /** * The organization's code. * @type {string} * @memberof CreateOrganizationResponseOrganization */ code?: string; } /** * Check if a given object implements the CreateOrganizationResponseOrganization interface. */ export declare function instanceOfCreateOrganizationResponseOrganization(value: object): boolean; export declare function CreateOrganizationResponseOrganizationFromJSON(json: any): CreateOrganizationResponseOrganization; export declare function CreateOrganizationResponseOrganizationFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateOrganizationResponseOrganization; export declare function CreateOrganizationResponseOrganizationToJSON(value?: CreateOrganizationResponseOrganization | null): any;