@microsoft/msgraph-beta-sdk-applications
Version:
Applications fluent API for Microsoft Graph
90 lines • 4 kB
JavaScript
/* tslint:disable */
/* eslint-disable */
// Generated by Microsoft Kiota
// @ts-ignore
import { deserializeIntoBaseCollectionPaginationCountResponse, serializeBaseCollectionPaginationCountResponse } from '@microsoft/msgraph-beta-sdk/models/index.js';
// @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 {CheckMemberObjectsPostRequestBody}
*/
// @ts-ignore
export function createCheckMemberObjectsPostRequestBodyFromDiscriminatorValue(parseNode) {
return deserializeIntoCheckMemberObjectsPostRequestBody;
}
/**
* 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 {CheckMemberObjectsPostResponse}
*/
// @ts-ignore
export function createCheckMemberObjectsPostResponseFromDiscriminatorValue(parseNode) {
return deserializeIntoCheckMemberObjectsPostResponse;
}
/**
* The deserialization information for the current model
* @returns {Record<string, (node: ParseNode) => void>}
*/
// @ts-ignore
export function deserializeIntoCheckMemberObjectsPostRequestBody(checkMemberObjectsPostRequestBody = {}) {
return {
"backingStoreEnabled": n => { checkMemberObjectsPostRequestBody.backingStoreEnabled = true; },
"ids": n => { checkMemberObjectsPostRequestBody.ids = n.getCollectionOfPrimitiveValues(); },
};
}
/**
* The deserialization information for the current model
* @returns {Record<string, (node: ParseNode) => void>}
*/
// @ts-ignore
export function deserializeIntoCheckMemberObjectsPostResponse(checkMemberObjectsPostResponse = {}) {
return Object.assign(Object.assign({}, deserializeIntoBaseCollectionPaginationCountResponse(checkMemberObjectsPostResponse)), { "value": n => { checkMemberObjectsPostResponse.value = n.getCollectionOfPrimitiveValues(); } });
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
// @ts-ignore
export function serializeCheckMemberObjectsPostRequestBody(writer, checkMemberObjectsPostRequestBody = {}) {
if (checkMemberObjectsPostRequestBody) {
writer.writeCollectionOfPrimitiveValues("ids", checkMemberObjectsPostRequestBody.ids);
writer.writeAdditionalData(checkMemberObjectsPostRequestBody.additionalData);
}
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
// @ts-ignore
export function serializeCheckMemberObjectsPostResponse(writer, checkMemberObjectsPostResponse = {}) {
if (checkMemberObjectsPostResponse) {
serializeBaseCollectionPaginationCountResponse(writer, checkMemberObjectsPostResponse);
writer.writeCollectionOfPrimitiveValues("value", checkMemberObjectsPostResponse.value);
}
}
/**
* Uri template for the request builder.
*/
export const CheckMemberObjectsRequestBuilderUriTemplate = "{+baseurl}/applications/{application%2Did}/checkMemberObjects";
/**
* Metadata for all the requests in the request builder.
*/
export const CheckMemberObjectsRequestBuilderRequestsMetadata = {
post: {
uriTemplate: CheckMemberObjectsRequestBuilderUriTemplate,
responseBodyContentType: "application/json",
errorMappings: {
XXX: createODataErrorFromDiscriminatorValue,
},
adapterMethodName: "send",
responseBodyFactory: createCheckMemberObjectsPostResponseFromDiscriminatorValue,
requestBodyContentType: "application/json",
requestBodySerializer: serializeCheckMemberObjectsPostRequestBody,
requestInformationContentSetMethod: "setContentFromParsable",
},
};
/* tslint:enable */
/* eslint-enable */
//# sourceMappingURL=index.js.map