@microsoft/msgraph-sdk-domains
Version:
Domains fluent API for Microsoft Graph
61 lines • 2.33 kB
JavaScript
/* tslint:disable */
/* eslint-disable */
// Generated by Microsoft Kiota
// @ts-ignore
import { createODataErrorFromDiscriminatorValue } from '@microsoft/msgraph-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 {PromotePostResponse}
*/
// @ts-ignore
export function createPromotePostResponseFromDiscriminatorValue(parseNode) {
return deserializeIntoPromotePostResponse;
}
/**
* The deserialization information for the current model
* @param PromotePostResponse The instance to deserialize into.
* @returns {Record<string, (node: ParseNode) => void>}
*/
// @ts-ignore
export function deserializeIntoPromotePostResponse(promotePostResponse = {}) {
return {
"backingStoreEnabled": n => { promotePostResponse.backingStoreEnabled = true; },
"value": n => { promotePostResponse.value = n.getBooleanValue(); },
};
}
/**
* Serializes information the current object
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
* @param PromotePostResponse The instance to serialize from.
* @param writer Serialization writer to use to serialize this model
*/
// @ts-ignore
export function serializePromotePostResponse(writer, promotePostResponse = {}, isSerializingDerivedType = false) {
if (!promotePostResponse || isSerializingDerivedType) {
return;
}
writer.writeBooleanValue("value", promotePostResponse.value);
writer.writeAdditionalData(promotePostResponse.additionalData);
}
/**
* Uri template for the request builder.
*/
export const PromoteRequestBuilderUriTemplate = "{+baseurl}/domains/{domain%2Did}/promote";
/**
* Metadata for all the requests in the request builder.
*/
export const PromoteRequestBuilderRequestsMetadata = {
post: {
uriTemplate: PromoteRequestBuilderUriTemplate,
responseBodyContentType: "application/json",
errorMappings: {
XXX: createODataErrorFromDiscriminatorValue,
},
adapterMethodName: "send",
responseBodyFactory: createPromotePostResponseFromDiscriminatorValue,
},
};
/* tslint:enable */
/* eslint-enable */
//# sourceMappingURL=index.js.map