/* Options: Date: 2024-04-29 02:43:15 Version: 8.13 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SubscribeToOrganization.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/orgs/{OrganizationId}/subscribe", Verbs="PUT") open class SubscribeToOrganization : IReturnVoid, IPut { var organizationId:Int? = null var postTypes:ArrayList? = null var frequency:Frequency? = null } enum class Frequency(val value:Int) { Daily(1), Weekly(7), Monthly(30), Quarterly(90), }