/** * #research_organization.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ export type ResearchOrganization = { id: number; name: string; isInternal: boolean; }; export type CreateResearchOrganizationRequest = { name: string; isInternal: boolean; }; export type CreateResearchOrganizationResponse = { organization?: ResearchOrganization | undefined; }; export type DeleteResearchOrganizationRequest = { id: number; }; export type DeleteResearchOrganizationResponse = { organization?: ResearchOrganization | undefined; }; export type GetResearchOrganizationByIdRequest = { id: number; }; export type GetResearchOrganizationByIdResponse = { organization?: ResearchOrganization | undefined; }; export type GetResearchOrganizationsRequest = {}; export type GetResearchOrganizationsResponse = { organizations: ResearchOrganization[]; }; export type UpdateResearchOrganizationByIdRequest = { id: number; name: string; isInternal: boolean; }; export type UpdateResearchOrganizationResponse = { organization?: ResearchOrganization | undefined; }; //# sourceMappingURL=research_organization.d.ts.map