value property
String
get
value
Implementation
String get value {
switch (this) {
case StoreReplacementMode.withTimeProration:
return 'WITH_TIME_PRORATION';
case StoreReplacementMode.chargeProratedPrice:
return 'CHARGE_PRORATED_PRICE';
case StoreReplacementMode.withoutProration:
return 'WITHOUT_PRORATION';
case StoreReplacementMode.chargeFullPrice:
return 'CHARGE_FULL_PRICE';
case StoreReplacementMode.deferred:
return 'DEFERRED';
}
}