ItemPrice.fromJson constructor

ItemPrice.fromJson(
  1. Map<String, dynamic> json
)

Implementation

ItemPrice.fromJson(Map<String, dynamic> json) {
  id = json['id'];
  description = json['description'];
  name = json['name'];
  priceType = json['priceType'];
  recurringChargePeriod = json['recurringChargePeriod'];
  unitOfMeasure = json['unitOfMeasure'];
  billingAccount = json['billingAccount'];
  price = json['price'];
  priceAlteration = json['priceAlteration'];
  productOfferingPrice = json['productOfferingPrice'];
  atBaseType = json['atBaseType'];
  atSchemaLocation = json['atSchemaLocation'];
  atType = json['atType'];
}