UNPKG

@microsoft/msgraph-beta-sdk-applications

Version:
66 lines 2.98 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createKeyCredentialFromDiscriminatorValue, createPasswordCredentialFromDiscriminatorValue, serializeKeyCredential, serializePasswordCredential } from '@microsoft/msgraph-beta-sdk/models/index.js'; // @ts-ignore import { createODataErrorFromDiscriminatorValue } from '@microsoft/msgraph-beta-sdk/models/oDataErrors/index.js'; /** * Creates a new instance of the appropriate class based on discriminator value * @param parseNode The parse node to use to read the discriminator value and create the object * @returns {AddKeyPostRequestBody} */ // @ts-ignore export function createAddKeyPostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoAddKeyPostRequestBody; } /** * The deserialization information for the current model * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoAddKeyPostRequestBody(addKeyPostRequestBody = {}) { return { "backingStoreEnabled": n => { addKeyPostRequestBody.backingStoreEnabled = true; }, "keyCredential": n => { addKeyPostRequestBody.keyCredential = n.getObjectValue(createKeyCredentialFromDiscriminatorValue); }, "passwordCredential": n => { addKeyPostRequestBody.passwordCredential = n.getObjectValue(createPasswordCredentialFromDiscriminatorValue); }, "proof": n => { addKeyPostRequestBody.proof = n.getStringValue(); }, }; } /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeAddKeyPostRequestBody(writer, addKeyPostRequestBody = {}) { if (addKeyPostRequestBody) { writer.writeObjectValue("keyCredential", addKeyPostRequestBody.keyCredential, serializeKeyCredential); writer.writeObjectValue("passwordCredential", addKeyPostRequestBody.passwordCredential, serializePasswordCredential); writer.writeStringValue("proof", addKeyPostRequestBody.proof); writer.writeAdditionalData(addKeyPostRequestBody.additionalData); } } /** * Uri template for the request builder. */ export const AddKeyRequestBuilderUriTemplate = "{+baseurl}/applications/{application%2Did}/addKey"; /** * Metadata for all the requests in the request builder. */ export const AddKeyRequestBuilderRequestsMetadata = { post: { uriTemplate: AddKeyRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "send", responseBodyFactory: createKeyCredentialFromDiscriminatorValue, requestBodyContentType: "application/json", requestBodySerializer: serializeAddKeyPostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map