/* Options: Date: 2025-12-06 05:51:13 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://affiliation-api-pr-4587.qa.platform.georiot.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetGroupAffiliateTokensRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/v4/groups/{groupId}/group-affiliate-tokens", Verbs="GET") @DataContract public static class GetGroupAffiliateTokensRequest implements IReturn { @DataMember(Name="groupId", IsRequired=true) @SerializedName("groupId") public Long groupId = null; @DataMember(Name="username", IsRequired=true) @SerializedName("username") public String username = null; public Long getGroupId() { return groupId; } public GetGroupAffiliateTokensRequest setGroupId(Long value) { this.groupId = value; return this; } public String getUsername() { return username; } public GetGroupAffiliateTokensRequest setUsername(String value) { this.username = value; return this; } private static Object responseType = GetGroupAffiliateTokensResponse.class; public Object getResponseType() { return responseType; } } @DataContract public static class GetGroupAffiliateTokensResponse extends BaseResponse { @DataMember public ArrayList affiliatePrograms = null; public ArrayList getAffiliatePrograms() { return affiliatePrograms; } public GetGroupAffiliateTokensResponse setAffiliatePrograms(ArrayList value) { this.affiliatePrograms = value; return this; } } public static interface IAffiliateProgram { public String programGuid = null; public HashMap affiliateTokens = null; } @DataContract public static class BaseResponse { @DataMember(Name="responseStatus") @SerializedName("responseStatus") public ResponseStatus responseStatus = null; public ResponseStatus getResponseStatus() { return responseStatus; } public BaseResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }