/* Options: Date: 2024-06-26 11:46:16 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UploadImagesRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/images", Verbs="POST") public static class UploadImagesRequest implements IReturn { /** * The company id, if empty will use the company id for the user you are logged in with. */ @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") public UUID CompanyId = null; /** * 1 - LogoType ,2 - Homepage, 3 - Newsletter, 4 - Resource, 5 - Service, 6 - Customer comments, 7 - Support Case Attachments */ @ApiMember(Description="1 - LogoType ,2 - Homepage, 3 - Newsletter, 4 - Resource, 5 - Service, 6 - Customer comments, 7 - Support Case Attachments", IsRequired=true, ParameterType="query") public Integer FolderType = null; public UUID getCompanyId() { return CompanyId; } public UploadImagesRequest setCompanyId(UUID value) { this.CompanyId = value; return this; } public Integer getFolderType() { return FolderType; } public UploadImagesRequest setFolderType(Integer value) { this.FolderType = value; return this; } private static Object responseType = UploadImageResponse.class; public Object getResponseType() { return responseType; } } public static class UploadImageResponse { public String FilePath = null; public String getFilePath() { return FilePath; } public UploadImageResponse setFilePath(String value) { this.FilePath = value; return this; } } }