isSelectiveAcknowledgementPermitted property
bool
get
isSelectiveAcknowledgementPermitted
Implementation
bool get isSelectiveAcknowledgementPermitted {
return indexOfOption(optionCodeSelectiveAcknowledgementPermitted) >= 0;
}
set
isSelectiveAcknowledgementPermitted
(bool value)
Implementation
set isSelectiveAcknowledgementPermitted(bool value) {
if (value) {
setOptionWithLength(optionCodeSelectiveAcknowledgementPermitted, 2);
} else {
removeOption(optionCodeSelectiveAcknowledgementPermitted);
}
}