Spaces:
Runtime error
Runtime error
| import { ApiHideProperty, ApiProperty } from '@nestjs/swagger'; | |
| export enum QRCodeFormat { | |
| IMAGE = 'image', | |
| RAW = 'raw', | |
| } | |
| export class QRCodeQuery { | |
| format: QRCodeFormat = QRCodeFormat.IMAGE; | |
| } | |
| export class QRCodeValue { | |
| value: string; | |
| } | |
| export class RequestCodeRequest { | |
| ({ | |
| description: 'Mobile phone number in international format', | |
| example: '12132132130', | |
| }) | |
| phoneNumber: string; | |
| ({ | |
| description: | |
| 'How would you like to receive the one time code for registration? |sms|voice. Leave empty for Web pairing.', | |
| example: null, | |
| required: false, | |
| }) | |
| method: string; | |
| () | |
| localeLanguage: string; | |
| () | |
| localeCountry: string; | |
| } | |
| export class PairingCodeResponse { | |
| code: string; | |
| } | |