Class ConsentDataModificationRequest
- java.lang.Object
-
- com.inteliqua.rest.customer.payload.consent.request.ConsentDataUpdateRequest
-
- com.inteliqua.rest.customer.payload.consent.request.ConsentDataModificationRequest
-
- All Implemented Interfaces:
ModificationRequest
public class ConsentDataModificationRequest extends ConsentDataUpdateRequest implements ModificationRequest
Represents a modification request for consent data. This class extends ConsentDataUpdateRequest and implements ModificationRequest to handle consent data updates.- Author:
- nikritikos
-
-
Constructor Summary
Constructors Constructor Description ConsentDataModificationRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ModificationTypegetAction()Gets the action to be performed on the consent.StringgetSystemCode()Gets the system code for the consent.voidsetAction(ModificationType action)voidsetSystemCode(String systemCode)StringtoString()Custom toString method to log the details of the consent modification request.-
Methods inherited from class com.inteliqua.rest.customer.payload.consent.request.ConsentDataUpdateRequest
addMetadata, getFlag, getMetadata, getUpdateDate, setFlag, setUpdateDate
-
-
-
-
Method Detail
-
getSystemCode
public String getSystemCode()
Gets the system code for the consent.- Specified by:
getSystemCodein interfaceModificationRequest- Returns:
- The consent system code.
-
setSystemCode
public void setSystemCode(String systemCode)
-
getAction
public ModificationType getAction()
Gets the action to be performed on the consent.- Specified by:
getActionin interfaceModificationRequest- Returns:
- The modification action.
-
setAction
public void setAction(ModificationType action)
-
toString
public String toString()
Custom toString method to log the details of the consent modification request.- Overrides:
toStringin classConsentDataUpdateRequest- Returns:
- A string representation of the object.
-
-