/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializer for permission check requests */ export type PermissionCheckRequest = { /** * Platform key to check permissions for */ platform_key: string; /** * List of resource paths to check permissions for. Must start and end with '/' (e.g., ['/mentors/', '/mentors/123/', '/students/']) */ resources: Array; };