UNPKG

@microsoft/msgraph-beta-sdk-applications

Version:
60 lines 2.33 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @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 {RemoveKeyPostRequestBody} */ // @ts-ignore export function createRemoveKeyPostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoRemoveKeyPostRequestBody; } /** * The deserialization information for the current model * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoRemoveKeyPostRequestBody(removeKeyPostRequestBody = {}) { return { "backingStoreEnabled": n => { removeKeyPostRequestBody.backingStoreEnabled = true; }, "keyId": n => { removeKeyPostRequestBody.keyId = n.getGuidValue(); }, "proof": n => { removeKeyPostRequestBody.proof = n.getStringValue(); }, }; } /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeRemoveKeyPostRequestBody(writer, removeKeyPostRequestBody = {}) { if (removeKeyPostRequestBody) { writer.writeGuidValue("keyId", removeKeyPostRequestBody.keyId); writer.writeStringValue("proof", removeKeyPostRequestBody.proof); writer.writeAdditionalData(removeKeyPostRequestBody.additionalData); } } /** * Uri template for the request builder. */ export const RemoveKeyRequestBuilderUriTemplate = "{+baseurl}/applications/{application%2Did}/removeKey"; /** * Metadata for all the requests in the request builder. */ export const RemoveKeyRequestBuilderRequestsMetadata = { post: { uriTemplate: RemoveKeyRequestBuilderUriTemplate, errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "sendNoResponseContent", requestBodyContentType: "application/json", requestBodySerializer: serializeRemoveKeyPostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map