UNPKG

@microsoft/msgraph-beta-sdk-users

Version:
57 lines 2.25 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 {RevokeSignInSessionsPostResponse} */ // @ts-ignore export function createRevokeSignInSessionsPostResponseFromDiscriminatorValue(parseNode) { return deserializeIntoRevokeSignInSessionsPostResponse; } /** * The deserialization information for the current model * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoRevokeSignInSessionsPostResponse(revokeSignInSessionsPostResponse = {}) { return { "backingStoreEnabled": n => { revokeSignInSessionsPostResponse.backingStoreEnabled = true; }, "value": n => { revokeSignInSessionsPostResponse.value = n.getBooleanValue(); }, }; } /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeRevokeSignInSessionsPostResponse(writer, revokeSignInSessionsPostResponse = {}) { if (revokeSignInSessionsPostResponse) { writer.writeBooleanValue("value", revokeSignInSessionsPostResponse.value); writer.writeAdditionalData(revokeSignInSessionsPostResponse.additionalData); } } /** * Uri template for the request builder. */ export const RevokeSignInSessionsRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/revokeSignInSessions"; /** * Metadata for all the requests in the request builder. */ export const RevokeSignInSessionsRequestBuilderRequestsMetadata = { post: { uriTemplate: RevokeSignInSessionsRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "send", responseBodyFactory: createRevokeSignInSessionsPostResponseFromDiscriminatorValue, }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map