/* Options: Date: 2026-02-14 10:08:24 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.co.za //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AddClaim.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { /** * Claim */ @Route(Path="/claim", Verbs="POST") @Api(Description="Claim") @ApiResponse(Description="Add claim request received", IsDefaultResponse=true, ResponseType=TokenDto.class, StatusCode=202) // @ApiResponse(Description="Claim not accepted, Confirm Sender GLN", ResponseType=ErrorResponse.class, StatusCode=403) public static class AddClaim implements IReturn { /** * Claim model containing all of the claim data */ @ApiMember(Description="Claim model containing all of the claim data", Name="claim", ParameterType="model") public ClaimMessage claim = null; public ClaimMessage getClaim() { return claim; } public AddClaim setClaim(ClaimMessage value) { this.claim = value; return this; } private static Object responseType = TokenDto.class; public Object getResponseType() { return responseType; } } public static class TokenDto implements ICommandResponse { public UUID token = null; public UUID getToken() { return token; } public TokenDto setToken(UUID value) { this.token = value; return this; } } public static interface ICommandResponse { } public static class ClaimMessage { public Header header = null; public ClaimNotification claimNotification = null; public Header getHeader() { return header; } public ClaimMessage setHeader(Header value) { this.header = value; return this; } public ClaimNotification getClaimNotification() { return claimNotification; } public ClaimMessage setClaimNotification(ClaimNotification value) { this.claimNotification = value; return this; } } }