public async static Task <ListWebhookResponse> List(GetAddesssApi api, string path, AdminKey adminKey) { return(await WebhookCommands.List(api, path, adminKey)); }
public async static Task <RemoveWebhookResponse> Remove(GetAddesssApi api, RemoveWebhookRequest request, string path, AdminKey adminKey) { return(await WebhookCommands.Remove(api, request, path, adminKey)); }
public async static Task <GetWebhookResponse> Get(GetAddesssApi api, string path, AdminKey adminKey, GetWebhookRequest request) { return(await WebhookCommands.Get(api, path, adminKey, request)); }
public async static Task <AddWebhookResponse> Add(GetAddesssApi api, AddWebhookRequest request, string path, AdminKey adminKey) { return(await WebhookCommands.Add(api, request, path, adminKey)); }