@microsoft/msgraph-beta-sdk-shares
Version:
Shares fluent API for Microsoft Graph
66 lines • 2.95 kB
JavaScript
/* tslint:disable */
/* eslint-disable */
// Generated by Microsoft Kiota
// @ts-ignore
import { createDriveRecipientFromDiscriminatorValue, createPermissionFromDiscriminatorValue, serializeDriveRecipient } 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 {RevokeGrantsPostRequestBody}
*/
// @ts-ignore
export function createRevokeGrantsPostRequestBodyFromDiscriminatorValue(parseNode) {
return deserializeIntoRevokeGrantsPostRequestBody;
}
/**
* The deserialization information for the current model
* @param RevokeGrantsPostRequestBody The instance to deserialize into.
* @returns {Record<string, (node: ParseNode) => void>}
*/
// @ts-ignore
export function deserializeIntoRevokeGrantsPostRequestBody(revokeGrantsPostRequestBody = {}) {
return {
"backingStoreEnabled": n => { revokeGrantsPostRequestBody.backingStoreEnabled = true; },
"grantees": n => { revokeGrantsPostRequestBody.grantees = n.getCollectionOfObjectValues(createDriveRecipientFromDiscriminatorValue); },
};
}
/**
* Serializes information the current object
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
* @param RevokeGrantsPostRequestBody The instance to serialize from.
* @param writer Serialization writer to use to serialize this model
*/
// @ts-ignore
export function serializeRevokeGrantsPostRequestBody(writer, revokeGrantsPostRequestBody = {}, isSerializingDerivedType = false) {
if (!revokeGrantsPostRequestBody || isSerializingDerivedType) {
return;
}
writer.writeCollectionOfObjectValues("grantees", revokeGrantsPostRequestBody.grantees, serializeDriveRecipient);
writer.writeAdditionalData(revokeGrantsPostRequestBody.additionalData);
}
/**
* Uri template for the request builder.
*/
export const RevokeGrantsRequestBuilderUriTemplate = "{+baseurl}/shares/{sharedDriveItem%2Did}/permission/revokeGrants";
/**
* Metadata for all the requests in the request builder.
*/
export const RevokeGrantsRequestBuilderRequestsMetadata = {
post: {
uriTemplate: RevokeGrantsRequestBuilderUriTemplate,
responseBodyContentType: "application/json",
errorMappings: {
XXX: createODataErrorFromDiscriminatorValue,
},
adapterMethodName: "send",
responseBodyFactory: createPermissionFromDiscriminatorValue,
requestBodyContentType: "application/json",
requestBodySerializer: serializeRevokeGrantsPostRequestBody,
requestInformationContentSetMethod: "setContentFromParsable",
},
};
/* tslint:enable */
/* eslint-enable */
//# sourceMappingURL=index.js.map