UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

63 lines (58 loc) 1.43 kB
/* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is * regenerated. */ 'use strict'; /** * GDPR tests verification result * */ class GdprVerificationResult { /** * Create a GdprVerificationResult. * @property {boolean} [status] Verification status. True means that the * verification was successfull. * @property {string} [message] Optional error message if the verification * failed. */ constructor() { } /** * Defines the metadata of GdprVerificationResult * * @returns {object} metadata of GdprVerificationResult * */ mapper() { return { required: false, serializedName: 'GdprVerificationResult', type: { name: 'Composite', className: 'GdprVerificationResult', modelProperties: { status: { required: false, serializedName: 'status', type: { name: 'Boolean' } }, message: { required: false, serializedName: 'message', type: { name: 'String' } } } } }; } } module.exports = GdprVerificationResult;