UNPKG

@microsoft/msgraph-beta-sdk-communications

Version:
73 lines 4.03 kB
/* tslint:disable */ /* eslint-disable */ // Generated by Microsoft Kiota // @ts-ignore import { createSmsLogRowFromDiscriminatorValue, serializeSmsLogRow } from '@microsoft/msgraph-beta-sdk/models/callRecords/index.js'; // @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 {GetSmsLogWithFromDateTimeWithToDateTimeGetResponse} */ // @ts-ignore export function createGetSmsLogWithFromDateTimeWithToDateTimeGetResponseFromDiscriminatorValue(parseNode) { return deserializeIntoGetSmsLogWithFromDateTimeWithToDateTimeGetResponse; } /** * The deserialization information for the current model * @param GetSmsLogWithFromDateTimeWithToDateTimeGetResponse The instance to deserialize into. * @returns {Record<string, (node: ParseNode) => void>} */ // @ts-ignore export function deserializeIntoGetSmsLogWithFromDateTimeWithToDateTimeGetResponse(getSmsLogWithFromDateTimeWithToDateTimeGetResponse = {}) { return Object.assign(Object.assign({}, deserializeIntoBaseCollectionPaginationCountResponse(getSmsLogWithFromDateTimeWithToDateTimeGetResponse)), { "value": n => { getSmsLogWithFromDateTimeWithToDateTimeGetResponse.value = n.getCollectionOfObjectValues(createSmsLogRowFromDiscriminatorValue); } }); } /** * Serializes information the current object * @param GetSmsLogWithFromDateTimeWithToDateTimeGetResponse The instance to serialize from. * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param writer Serialization writer to use to serialize this model */ // @ts-ignore export function serializeGetSmsLogWithFromDateTimeWithToDateTimeGetResponse(writer, getSmsLogWithFromDateTimeWithToDateTimeGetResponse = {}, isSerializingDerivedType = false) { if (!getSmsLogWithFromDateTimeWithToDateTimeGetResponse || isSerializingDerivedType) { return; } serializeBaseCollectionPaginationCountResponse(writer, getSmsLogWithFromDateTimeWithToDateTimeGetResponse, isSerializingDerivedType); writer.writeCollectionOfObjectValues("value", getSmsLogWithFromDateTimeWithToDateTimeGetResponse.value, serializeSmsLogRow); } /** * Uri template for the request builder. */ export const MicrosoftGraphCallRecordsGetSmsLogWithFromDateTimeWithToDateTimeRequestBuilderUriTemplate = "{+baseurl}/communications/callRecords/microsoft.graph.callRecords.getSmsLog(fromDateTime={fromDateTime},toDateTime={toDateTime}){?%24count,%24filter,%24search,%24skip,%24top}"; /** * Mapper for query parameters from symbol name to serialization name represented as a constant. */ const MicrosoftGraphCallRecordsGetSmsLogWithFromDateTimeWithToDateTimeRequestBuilderGetQueryParametersMapper = { "count": "%24count", "filter": "%24filter", "search": "%24search", "skip": "%24skip", "top": "%24top", }; /** * Metadata for all the requests in the request builder. */ export const MicrosoftGraphCallRecordsGetSmsLogWithFromDateTimeWithToDateTimeRequestBuilderRequestsMetadata = { get: { uriTemplate: MicrosoftGraphCallRecordsGetSmsLogWithFromDateTimeWithToDateTimeRequestBuilderUriTemplate, responseBodyContentType: "application/json", errorMappings: { XXX: createODataErrorFromDiscriminatorValue, }, adapterMethodName: "send", responseBodyFactory: createGetSmsLogWithFromDateTimeWithToDateTimeGetResponseFromDiscriminatorValue, queryParametersMapper: MicrosoftGraphCallRecordsGetSmsLogWithFromDateTimeWithToDateTimeRequestBuilderGetQueryParametersMapper, }, }; /* tslint:enable */ /* eslint-enable */ //# sourceMappingURL=index.js.map