@microsoft/msgraph-beta-sdk-organization
Version:
Organization fluent API for Microsoft Graph
61 lines • 2.85 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 {SetMobileDeviceManagementAuthorityPostResponse}
*/
// @ts-ignore
export function createSetMobileDeviceManagementAuthorityPostResponseFromDiscriminatorValue(parseNode) {
return deserializeIntoSetMobileDeviceManagementAuthorityPostResponse;
}
/**
* The deserialization information for the current model
* @param SetMobileDeviceManagementAuthorityPostResponse The instance to deserialize into.
* @returns {Record<string, (node: ParseNode) => void>}
*/
// @ts-ignore
export function deserializeIntoSetMobileDeviceManagementAuthorityPostResponse(setMobileDeviceManagementAuthorityPostResponse = {}) {
return {
"backingStoreEnabled": n => { setMobileDeviceManagementAuthorityPostResponse.backingStoreEnabled = true; },
"value": n => { setMobileDeviceManagementAuthorityPostResponse.value = n.getNumberValue(); },
};
}
/**
* Serializes information the current object
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
* @param SetMobileDeviceManagementAuthorityPostResponse The instance to serialize from.
* @param writer Serialization writer to use to serialize this model
*/
// @ts-ignore
export function serializeSetMobileDeviceManagementAuthorityPostResponse(writer, setMobileDeviceManagementAuthorityPostResponse = {}, isSerializingDerivedType = false) {
if (!setMobileDeviceManagementAuthorityPostResponse || isSerializingDerivedType) {
return;
}
writer.writeNumberValue("value", setMobileDeviceManagementAuthorityPostResponse.value);
writer.writeAdditionalData(setMobileDeviceManagementAuthorityPostResponse.additionalData);
}
/**
* Uri template for the request builder.
*/
export const SetMobileDeviceManagementAuthorityRequestBuilderUriTemplate = "{+baseurl}/organization/{organization%2Did}/setMobileDeviceManagementAuthority";
/**
* Metadata for all the requests in the request builder.
*/
export const SetMobileDeviceManagementAuthorityRequestBuilderRequestsMetadata = {
post: {
uriTemplate: SetMobileDeviceManagementAuthorityRequestBuilderUriTemplate,
responseBodyContentType: "application/json",
errorMappings: {
XXX: createODataErrorFromDiscriminatorValue,
},
adapterMethodName: "send",
responseBodyFactory: createSetMobileDeviceManagementAuthorityPostResponseFromDiscriminatorValue,
},
};
/* tslint:enable */
/* eslint-enable */
//# sourceMappingURL=index.js.map