/** * Information about accounts which have access to a module (Developer 360) */ export interface DailyModuleAccountAccessDto { /** * @format int32 */ day?: number; /** * @format int32 */ month?: number; /** * @format int64 */ serviceAccountCount?: number; /** * @format int64 */ userAccountCount?: number; /** * @format int32 */ year?: number; }