copyWithWrapped method

WebApiModulesAgentOrderCompletePoWorksheetSessionRequest copyWithWrapped({
  1. Wrapped<String?>? sessionId,
  2. Wrapped<String?>? existingInternalOrderId,
  3. Wrapped<String?>? recType,
})

Implementation

WebApiModulesAgentOrderCompletePoWorksheetSessionRequest copyWithWrapped(
    {Wrapped<String?>? sessionId,
    Wrapped<String?>? existingInternalOrderId,
    Wrapped<String?>? recType}) {
  return WebApiModulesAgentOrderCompletePoWorksheetSessionRequest(
      sessionId: (sessionId != null ? sessionId.value : this.sessionId),
      existingInternalOrderId: (existingInternalOrderId != null
          ? existingInternalOrderId.value
          : this.existingInternalOrderId),
      recType: (recType != null ? recType.value : this.recType));
}