/* Options: Date: 2024-06-17 13:00:27 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: UserAgreementQuery.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class UserAgreementQueryResponse { public UserId: string; public AgreementId: string; public UserAgreementCreated?: string; public AgreedToLatest: boolean; public Documents: string[]; public ResponseStatus: Object; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/users/agreement", "GET") // @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 UserAgreementQuery implements IReturn { public UserId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UserAgreementQuery'; } public getMethod() { return 'GET'; } public createResponse() { return new UserAgreementQueryResponse(); } }