UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

28 lines (25 loc) 860 B
/* * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ import { StoreNotificationsGetNotificationByAppIdOptionalParams, StoreNotificationsGetNotificationByAppIdResponse } from "../models"; /** Interface representing a StoreNotifications. */ export interface StoreNotifications { /** * Application specific store service status * @param ownerName The name of the owner * @param appName The name of the application * @param options The options parameters. */ getNotificationByAppId( ownerName: string, appName: string, options?: StoreNotificationsGetNotificationByAppIdOptionalParams ): Promise<StoreNotificationsGetNotificationByAppIdResponse>; }