/* Options: Date: 2026-03-31 17:03:32 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetUserPrivacyInformation.* //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 { @Route(Path="/users/{UserID}/extranet/{ExtranetEnvironment}/privacyinformation", Verbs="GET") public static class GetUserPrivacyInformation implements IReturn { public Integer UserID = null; public Boolean ExtranetEnvironment = null; public Integer getUserID() { return UserID; } public GetUserPrivacyInformation setUserID(Integer value) { this.UserID = value; return this; } public Boolean isExtranetEnvironment() { return ExtranetEnvironment; } public GetUserPrivacyInformation setExtranetEnvironment(Boolean value) { this.ExtranetEnvironment = value; return this; } private static Object responseType = UserPrivacyInformation.class; public Object getResponseType() { return responseType; } } public static class UserPrivacyInformation { public Boolean ShowPrivacyStatement = null; public Boolean isShowPrivacyStatement() { return ShowPrivacyStatement; } public UserPrivacyInformation setShowPrivacyStatement(Boolean value) { this.ShowPrivacyStatement = value; return this; } } }