@microsoft/msgraph-beta-sdk-users
Version:
Users fluent API for Microsoft Graph
57 lines • 2.35 kB
JavaScript
/* 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 {InvalidateAllRefreshTokensPostResponse}
*/
// @ts-ignore
export function createInvalidateAllRefreshTokensPostResponseFromDiscriminatorValue(parseNode) {
return deserializeIntoInvalidateAllRefreshTokensPostResponse;
}
/**
* The deserialization information for the current model
* @returns {Record<string, (node: ParseNode) => void>}
*/
// @ts-ignore
export function deserializeIntoInvalidateAllRefreshTokensPostResponse(invalidateAllRefreshTokensPostResponse = {}) {
return {
"backingStoreEnabled": n => { invalidateAllRefreshTokensPostResponse.backingStoreEnabled = true; },
"value": n => { invalidateAllRefreshTokensPostResponse.value = n.getBooleanValue(); },
};
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
// @ts-ignore
export function serializeInvalidateAllRefreshTokensPostResponse(writer, invalidateAllRefreshTokensPostResponse = {}) {
if (invalidateAllRefreshTokensPostResponse) {
writer.writeBooleanValue("value", invalidateAllRefreshTokensPostResponse.value);
writer.writeAdditionalData(invalidateAllRefreshTokensPostResponse.additionalData);
}
}
/**
* Uri template for the request builder.
*/
export const InvalidateAllRefreshTokensRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/invalidateAllRefreshTokens";
/**
* Metadata for all the requests in the request builder.
*/
export const InvalidateAllRefreshTokensRequestBuilderRequestsMetadata = {
post: {
uriTemplate: InvalidateAllRefreshTokensRequestBuilderUriTemplate,
responseBodyContentType: "application/json",
errorMappings: {
XXX: createODataErrorFromDiscriminatorValue,
},
adapterMethodName: "send",
responseBodyFactory: createInvalidateAllRefreshTokensPostResponseFromDiscriminatorValue,
},
};
/* tslint:enable */
/* eslint-enable */
//# sourceMappingURL=index.js.map