UNPKG

@microsoft/msgraph-beta-sdk-users

Version:
72 lines 4.17 kB
import { type QrCode } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the standardQRCode property of the microsoft.graph.qrCodePinAuthenticationMethod entity. */ export interface StandardQRCodeRequestBuilder extends BaseRequestBuilder<StandardQRCodeRequestBuilder> { /** * Delete a standard or temporary qrCode object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @see {@link https://learn.microsoft.com/graph/api/qrcode-delete?view=graph-rest-beta|Find more info here} */ delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>; /** * Read the properties and relationships of a qrCode object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<QrCode>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @see {@link https://learn.microsoft.com/graph/api/qrcode-get?view=graph-rest-beta|Find more info here} */ get(requestConfiguration?: RequestConfiguration<StandardQRCodeRequestBuilderGetQueryParameters> | undefined): Promise<QrCode | undefined>; /** * Create a standard or temporary QR code, if there is no active QR code, or update a standard QR code. Only the expireDateTime property can be updated for a standard QR code. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<QrCode>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @see {@link https://learn.microsoft.com/graph/api/qrcode-update?view=graph-rest-beta|Find more info here} */ patch(body: QrCode, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<QrCode | undefined>; /** * Delete a standard or temporary qrCode object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * Read the properties and relationships of a qrCode object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<StandardQRCodeRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Create a standard or temporary QR code, if there is no active QR code, or update a standard QR code. Only the expireDateTime property can be updated for a standard QR code. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPatchRequestInformation(body: QrCode, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Read the properties and relationships of a qrCode object. */ export interface StandardQRCodeRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const StandardQRCodeRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/authentication/qrCodePinMethod/standardQRCode{?%24expand,%24select}"; /** * Metadata for all the requests in the request builder. */ export declare const StandardQRCodeRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map