appcenter-cli
Version:
Command line tool for Visual Studio App Center
25 lines (22 loc) • 710 B
text/typescript
/*
* 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 { WebhooksListOptionalParams, WebhooksListResponse } from "../models";
/** Interface representing a Webhooks. */
export interface Webhooks {
/**
* Get web hooks configured for a particular app
* @param ownerName The name of the owner
* @param appName The name of the application
* @param options The options parameters.
*/
list(
ownerName: string,
appName: string,
options?: WebhooksListOptionalParams
): Promise<WebhooksListResponse>;
}