@microsoft/msgraph-beta-sdk-users
Version:
Users fluent API for Microsoft Graph
56 lines • 2.92 kB
JavaScript
/* tslint:disable */
/* eslint-disable */
// Generated by Microsoft Kiota
// @ts-ignore
import { createPasswordSingleSignOnCredentialSetFromDiscriminatorValue, deserializeIntoBaseCollectionPaginationCountResponse, serializeBaseCollectionPaginationCountResponse, serializePasswordSingleSignOnCredentialSet } 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 {GetPasswordSingleSignOnCredentialsPostResponse}
*/
// @ts-ignore
export function createGetPasswordSingleSignOnCredentialsPostResponseFromDiscriminatorValue(parseNode) {
return deserializeIntoGetPasswordSingleSignOnCredentialsPostResponse;
}
/**
* The deserialization information for the current model
* @returns {Record<string, (node: ParseNode) => void>}
*/
// @ts-ignore
export function deserializeIntoGetPasswordSingleSignOnCredentialsPostResponse(getPasswordSingleSignOnCredentialsPostResponse = {}) {
return Object.assign(Object.assign({}, deserializeIntoBaseCollectionPaginationCountResponse(getPasswordSingleSignOnCredentialsPostResponse)), { "value": n => { getPasswordSingleSignOnCredentialsPostResponse.value = n.getCollectionOfObjectValues(createPasswordSingleSignOnCredentialSetFromDiscriminatorValue); } });
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
// @ts-ignore
export function serializeGetPasswordSingleSignOnCredentialsPostResponse(writer, getPasswordSingleSignOnCredentialsPostResponse = {}) {
if (getPasswordSingleSignOnCredentialsPostResponse) {
serializeBaseCollectionPaginationCountResponse(writer, getPasswordSingleSignOnCredentialsPostResponse);
writer.writeCollectionOfObjectValues("value", getPasswordSingleSignOnCredentialsPostResponse.value, serializePasswordSingleSignOnCredentialSet);
}
}
/**
* Uri template for the request builder.
*/
export const GetPasswordSingleSignOnCredentialsRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/getPasswordSingleSignOnCredentials";
/**
* Metadata for all the requests in the request builder.
*/
export const GetPasswordSingleSignOnCredentialsRequestBuilderRequestsMetadata = {
post: {
uriTemplate: GetPasswordSingleSignOnCredentialsRequestBuilderUriTemplate,
responseBodyContentType: "application/json",
errorMappings: {
XXX: createODataErrorFromDiscriminatorValue,
},
adapterMethodName: "send",
responseBodyFactory: createGetPasswordSingleSignOnCredentialsPostResponseFromDiscriminatorValue,
},
};
/* tslint:enable */
/* eslint-enable */
//# sourceMappingURL=index.js.map