UNPKG

@microsoft/msgraph-beta-sdk-users

Version:
64 lines 2.76 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createBufferDecryptionResultFromDiscriminatorValue } 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 {DecryptBufferPostRequestBody} */ // @ts-ignore export function createDecryptBufferPostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoDecryptBufferPostRequestBody; } /** * The deserialization information for the current model * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoDecryptBufferPostRequestBody(decryptBufferPostRequestBody = {}) { return { "backingStoreEnabled": n => { decryptBufferPostRequestBody.backingStoreEnabled = true; }, "encryptedBuffer": n => { decryptBufferPostRequestBody.encryptedBuffer = n.getByteArrayValue(); }, "publishingLicense": n => { decryptBufferPostRequestBody.publishingLicense = n.getByteArrayValue(); }, }; } /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeDecryptBufferPostRequestBody(writer, decryptBufferPostRequestBody = {}) { if (decryptBufferPostRequestBody) { writer.writeByteArrayValue("encryptedBuffer", decryptBufferPostRequestBody.encryptedBuffer); writer.writeByteArrayValue("publishingLicense", decryptBufferPostRequestBody.publishingLicense); writer.writeAdditionalData(decryptBufferPostRequestBody.additionalData); } } /** * Uri template for the request builder. */ export const DecryptBufferRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/informationProtection/decryptBuffer"; /** * Metadata for all the requests in the request builder. */ export const DecryptBufferRequestBuilderRequestsMetadata = { post: { uriTemplate: DecryptBufferRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "send", responseBodyFactory: createBufferDecryptionResultFromDiscriminatorValue, requestBodyContentType: "application/json", requestBodySerializer: serializeDecryptBufferPostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map