package response import "time" type UserRoleAccessesResponse struct { ID uint `json:"id"` UserRoleId uint `json:"userRoleId"` MenuId int `json:"menuId"` IsViewEnabled bool `json:"isViewEnabled"` IsInsertEnabled bool `json:"isInsertEnabled"` IsUpdateEnabled bool `json:"isUpdateEnabled"` IsDeleteEnabled bool `json:"isDeleteEnabled"` IsApprovalEnabled bool `json:"isApprovalEnabled"` IsAdminEnabled bool `json:"isAdminEnabled"` IsActive *bool `json:"isActive"` CreatedAt time.Time `json:"createdAt"` UpdatedAt time.Time `json:"updatedAt"` }