com.global.api.entities.reporting.UserLinks Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of globalpayments-sdk Show documentation
Show all versions of globalpayments-sdk Show documentation
API for processing payments through Global Payments
package com.global.api.entities.reporting;
import com.global.api.entities.enums.UserLevelRelationship;
import com.global.api.entities.enums.UserStatus;
import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Accessors;
@Accessors(chain = true)
@Getter
@Setter
public class UserLinks {
// Describes the relationship the associated link href value has to the current resource
private UserLevelRelationship rel;
// A href link to the resources or resource actions as indicated in the corresponding rel value
private String href;
}