ProductOfferingPrice.fromJson constructor

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

Implementation

ProductOfferingPrice.fromJson(Map<String, dynamic> json) {
  id = json['id'];
  href = json['href'];
  name = json['name'];
  baseType = json['@baseType'];
  schemaLocation = json['@schemaLocation'];
  type = json['@type'];
  referredType = json['@referredType'];
}