PassioNutrients

AttributeDescription

weight

The weight of the nutrients.

vitaminA

The amount of vitamin A.

alcohol

The amount of alcohol.

calcium

The amount of calcium.

calories

The amount of calories.

carbs

The amount of carbohydrates.

cholesterol

The amount of cholesterol.

fat

The amount of fat.

fibers

The amount of dietary fiber.

iodine

The amount of iodine.

iron

The amount of iron.

magnesium

The amount of magnesium.

monounsaturatedFat

The amount of monounsaturated fat.

phosphorus

The amount of phosphorus.

polyunsaturatedFat

The amount of polyunsaturated fat.

potassium

The amount of potassium.

protein

The amount of protein.

satFat

The amount of saturated fat.

sodium

The amount of sodium.

sugarAlcohol

The amount of sugar alcohol.

sugars

The amount of sugars.

sugarsAdded

The amount of added sugars.

transFat

The amount of trans fat.

vitaminB12

The amount of vitamin B12.

vitaminB12Added

The amount of added vitamin B12.

vitaminB6

The amount of vitamin B6.

vitaminC

The amount of vitamin C.

vitaminD

The amount of vitamin D.

vitaminE

The amount of vitamin E.

vitaminEAdded

The amount of added vitamin E.

export interface PassioNutrients {
  /** The weight of the nutrients. */
  weight?: UnitMass
  /** The amount of vitamin A. */
  vitaminA?: UnitMass
  /** The amount of alcohol. */
  alcohol?: UnitMass
  /** The amount of calcium. */
  calcium?: UnitMass
  /** The amount of calories. */
  calories?: UnitMass
  /** The amount of carbohydrates. */
  carbs?: UnitMass
  /** The amount of cholesterol. */
  cholesterol?: UnitMass
  /** The amount of fat. */
  fat?: UnitMass
  /** The amount of dietary fiber. */
  fibers?: UnitMass
  /** The amount of iodine. */
  iodine?: UnitMass
  /** The amount of iron. */
  iron?: UnitMass
  /** The amount of magnesium. */
  magnesium?: UnitMass
  /** The amount of monounsaturated fat. */
  monounsaturatedFat?: UnitMass
  /** The amount of phosphorus. */
  phosphorus?: UnitMass
  /** The amount of polyunsaturated fat. */
  polyunsaturatedFat?: UnitMass
  /** The amount of potassium. */
  potassium?: UnitMass
  /** The amount of protein. */
  protein?: UnitMass
  /** The amount of saturated fat. */
  satFat?: UnitMass
  /** The amount of sodium. */
  sodium?: UnitMass
  /** The amount of sugar alcohol. */
  sugarAlcohol?: UnitMass
  /** The amount of sugars. */
  sugars?: UnitMass
  /** The amount of added sugars. */
  sugarsAdded?: UnitMass
  /** The amount of trans fat. */
  transFat?: UnitMass
  /** The amount of vitamin B12. */
  vitaminB12?: UnitMass
  /** The amount of added vitamin B12. */
  vitaminB12Added?: UnitMass
  /** The amount of vitamin B6. */
  vitaminB6?: UnitMass
  /** The amount of vitamin C. */
  vitaminC?: UnitMass
  /** The amount of vitamin D. */
  vitaminD?: UnitMass
  /** The amount of vitamin E. */
  vitaminE?: UnitMass
  /** The amount of added vitamin E. */
  vitaminEAdded?: UnitMass
}

Last updated