/*
 * 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>;
}
