/** * #organization.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ export type Organization = { id: string; name: string; isInternal: boolean; contractEndDate?: string | undefined; }; export type CreateOrganizationRequest = { name: string; isInternal: boolean; contractEndDate?: string | undefined; }; export type CreateOrganizationResponse = { organization?: Organization | undefined; }; export type DeleteOrganizationRequest = { id: string; }; export type DeleteOrganizationResponse = { organization?: Organization | undefined; }; export type GetOrganizationByNameRequest = { name: string; }; export type GetOrganizationByNameResponse = { organization?: Organization | undefined; }; export type GetOrganizationByIdRequest = { id: string; }; export type GetOrganizationByIdResponse = { organization?: Organization | undefined; }; export type GetOrganizationsRequest = {}; export type GetOrganizationsResponse = { organizations: Organization[]; }; export type UpdateOrganizationByIdRequest = { id: string; isInternal: boolean; }; export type UpdateOrganizationResponse = { organization?: Organization | undefined; }; //# sourceMappingURL=organization.d.ts.map