UNPKG

@microsoft/msgraph-beta-sdk-users

Version:
60 lines 2.48 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 {ChangePasswordPostRequestBody} */ // @ts-ignore export function createChangePasswordPostRequestBodyFromDiscriminatorValue(parseNode) { return deserializeIntoChangePasswordPostRequestBody; } /** * The deserialization information for the current model * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoChangePasswordPostRequestBody(changePasswordPostRequestBody = {}) { return { "backingStoreEnabled": n => { changePasswordPostRequestBody.backingStoreEnabled = true; }, "currentPassword": n => { changePasswordPostRequestBody.currentPassword = n.getStringValue(); }, "newPassword": n => { changePasswordPostRequestBody.newPassword = n.getStringValue(); }, }; } /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeChangePasswordPostRequestBody(writer, changePasswordPostRequestBody = {}) { if (changePasswordPostRequestBody) { writer.writeStringValue("currentPassword", changePasswordPostRequestBody.currentPassword); writer.writeStringValue("newPassword", changePasswordPostRequestBody.newPassword); writer.writeAdditionalData(changePasswordPostRequestBody.additionalData); } } /** * Uri template for the request builder. */ export const ChangePasswordRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/changePassword"; /** * Metadata for all the requests in the request builder. */ export const ChangePasswordRequestBuilderRequestsMetadata = { post: { uriTemplate: ChangePasswordRequestBuilderUriTemplate, errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "sendNoResponseContent", requestBodyContentType: "application/json", requestBodySerializer: serializeChangePasswordPostRequestBody, requestInformationContentSetMethod: "setContentFromParsable", }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map