You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.0.0
*
*
* 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 BasicOrganization
*/
export interface BasicOrganization {
[key: string]: any | any;
/**
* The ID of the user who will be marked as the owner of this organization. When omitted, the authorized user ID will be used.
* @type {number}
*/
'owner_id'?: number;
/**
* The label assigned to the organization. When the `label` field is updated, the `label_ids` field value will be overwritten by the `label` field value.
* @type {number}
*/
'label'?: number;
/**
* The IDs of labels assigned to the organization. When the `label_ids` field is updated, the `label` field value will be set to the first value of the `label_ids` field.
* @type {Array<number>}
*/
'label_ids'?: Array<number>;
/**
*
* @type {string}
*/
'visible_to'?: BasicOrganizationVisibleToConst;
}
export const BasicOrganizationVisibleToConst = {
_1: '1',
_3: '3',
_5: '5',
_7: '7'
} as const;
export type BasicOrganizationVisibleToConst = typeof BasicOrganizationVisibleToConst[keyof typeof BasicOrganizationVisibleToConst];