/* Options: Date: 2024-04-29 10:04:19 Version: 8.13 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SubscribeToOrganization.* //ExcludeTypes: //DefaultImports: */ export interface IReturnVoid { createResponse(): void; } export interface IPut { } export enum Frequency { Daily = 1, Weekly = 7, Monthly = 30, Quarterly = 90, } // @Route("/orgs/{OrganizationId}/subscribe", "PUT") export class SubscribeToOrganization implements IReturnVoid, IPut { public organizationId: number; public postTypes: PostType[]; public frequency?: Frequency; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SubscribeToOrganization'; } public getMethod() { return 'PUT'; } public createResponse() {} }