/* Options: Date: 2024-06-17 05:53:05 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CreateUserAgreement.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class CreateUserAgreementResponse { public UserId: string; public AgreementId: string; public UserAgreementCreated: string; public ResponseStatus: Object; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/users/agreement", "POST") // @ApiResponse(Description="Returned if there is a validation error on the input parameters", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) // @ValidateRequest(Validator="IsAuthenticated") export class CreateUserAgreement implements IReturn { public UserId: string; public AgreementId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CreateUserAgreement'; } public getMethod() { return 'POST'; } public createResponse() { return new CreateUserAgreementResponse(); } }