import { GeneratedSchema } from './../foundations/index.js'; /** * The relations between applications, users and organizations. A relation means that a user has consented to an application to access data in an organization. * * @remarks This is a type for database creation. * @see {@link ApplicationUserConsentOrganization} for the original type. */ export type CreateApplicationUserConsentOrganization = { tenantId?: string; applicationId: string; organizationId: string; userId: string; }; /** The relations between applications, users and organizations. A relation means that a user has consented to an application to access data in an organization. */ export type ApplicationUserConsentOrganization = { tenantId: string; applicationId: string; organizationId: string; userId: string; }; export type ApplicationUserConsentOrganizationKeys = 'tenantId' | 'applicationId' | 'organizationId' | 'userId'; export declare const ApplicationUserConsentOrganizations: GeneratedSchema;