Class LoyaltyMemberRelationshipPayload
- java.lang.Object
-
- com.inteliqua.rest.customer.payload.loyalty.member.relationship.LoyaltyMemberRelationshipPayload
-
public class LoyaltyMemberRelationshipPayload extends Object
Represents the relationship data of a loyalty member. This class encapsulates the relationship code, type, and remarks associated with a loyalty member's relationship.- Author:
- gkosmas
-
-
Constructor Summary
Constructors Constructor Description LoyaltyMemberRelationshipPayload()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetRelationshipCode()Gets the relationship code of the loyalty member.StringgetRelationshipRemarks()Gets the remarks describing the relationship.StringgetRelationshipType()Gets the type of the relationship.voidsetRelationshipCode(String relationshipCode)Sets the relationship code of the loyalty member.voidsetRelationshipRemarks(String relationshipRemarks)Sets the remarks describing the relationship.voidsetRelationshipType(String relationshipType)Sets the type of the relationship.StringtoString()Provides a string representation of the LoyaltyMemberRelationshipPayload object.
-
-
-
Method Detail
-
getRelationshipCode
public String getRelationshipCode()
Gets the relationship code of the loyalty member.- Returns:
- the relationship code.
-
setRelationshipCode
public void setRelationshipCode(String relationshipCode)
Sets the relationship code of the loyalty member.- Parameters:
relationshipCode- the relationship code to set.
-
getRelationshipType
public String getRelationshipType()
Gets the type of the relationship.- Returns:
- the relationship type.
-
setRelationshipType
public void setRelationshipType(String relationshipType)
Sets the type of the relationship.- Parameters:
relationshipType- the relationship type to set.
-
getRelationshipRemarks
public String getRelationshipRemarks()
Gets the remarks describing the relationship.- Returns:
- the relationship remarks.
-
setRelationshipRemarks
public void setRelationshipRemarks(String relationshipRemarks)
Sets the remarks describing the relationship.- Parameters:
relationshipRemarks- the relationship remarks to set.
-
-