/* Options: Date: 2026-04-02 04:06:51 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SetConfiguration.* //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="/translations/configure", Verbs="POST") public static class SetConfiguration implements IReturn { public String Cron = null; public String getCron() { return Cron; } public SetConfiguration setCron(String value) { this.Cron = value; return this; } private static Object responseType = SetConfigurationResponse.class; public Object getResponseType() { return responseType; } } public static class SetConfigurationResponse { public String NextSyncRun = null; public String getNextSyncRun() { return NextSyncRun; } public SetConfigurationResponse setNextSyncRun(String value) { this.NextSyncRun = value; return this; } } }