PayModel constructor

PayModel({
  1. required String documentID,
  2. required String appId,
  3. String? description,
  4. ActionModel? succeeded,
  5. ActionModel? payAction,
  6. ShopModel? shop,
  7. StorageConditionsModel? conditions,
})

Implementation

PayModel({
  required this.documentID,
  required this.appId,
  this.description,
  this.succeeded,
  this.payAction,
  this.shop,
  this.conditions,
});