appcenter-cli
Version:
Command line tool for Visual Studio App Center
62 lines (57 loc) • 1.41 kB
JavaScript
/*
* 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.
*/
;
/**
* Apple Certificate Details
*
*/
class AppleCertificateDetails {
/**
* Create a AppleCertificateDetails.
* @property {string} base64Certificate The certificate contents in base 64
* encoded string
* @property {string} password The password for the certificate
*/
constructor() {
}
/**
* Defines the metadata of AppleCertificateDetails
*
* @returns {object} metadata of AppleCertificateDetails
*
*/
mapper() {
return {
required: false,
serializedName: 'AppleCertificateDetails',
type: {
name: 'Composite',
className: 'AppleCertificateDetails',
modelProperties: {
base64Certificate: {
required: true,
serializedName: 'base64Certificate',
type: {
name: 'String'
}
},
password: {
required: true,
serializedName: 'password',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = AppleCertificateDetails;