/* Options: Date: 2025-08-04 03:52:35 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeleteOrganizationOwner.* //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="/tender/{tenderid}/user/{userid}/compliance/{complianceid}/organizationowner/{organizationownerid}", Verbs="DELETE") public static class DeleteOrganizationOwner extends OrganizationOwnerBase implements IReturn, IDelete { public Integer OrganizationOwnerId = null; public Integer getOrganizationOwnerId() { return OrganizationOwnerId; } public DeleteOrganizationOwner setOrganizationOwnerId(Integer value) { this.OrganizationOwnerId = value; return this; } private static Object responseType = ModifyEntityResponse.class; public Object getResponseType() { return responseType; } } public static class ModifyEntityResponse extends ResponseBase { public Integer Id = null; public Integer getId() { return Id; } public ModifyEntityResponse setId(Integer value) { this.Id = value; return this; } } public static class OrganizationOwnerBase { public Integer TenderId = null; public Integer UserId = null; public Integer ComplianceId = null; public Integer getTenderId() { return TenderId; } public OrganizationOwnerBase setTenderId(Integer value) { this.TenderId = value; return this; } public Integer getUserId() { return UserId; } public OrganizationOwnerBase setUserId(Integer value) { this.UserId = value; return this; } public Integer getComplianceId() { return ComplianceId; } public OrganizationOwnerBase setComplianceId(Integer value) { this.ComplianceId = value; return this; } } public static class ResponseBase { public ResponseStatus ResponseStatus = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public ResponseBase setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }