Пример #1
0
 public void Delete(int accountId, string attributeName)
 {
     TDClient.Delete(ITEM, new { accountId, nameOrId = attributeName });
 }
Пример #2
0
 public void Delete(int accountId, int contactListId)
 {
     TDClient.Delete(ITEM, new { accountId, contactListId });
 }
 public void Delete(int accountId, int imageId)
 {
     TDClient.Delete(ITEM, new { accountId, imageId });
 }
Пример #4
0
 public void Delete(int accountId, int attributeId)
 {
     TDClient.Delete(ITEM, new { accountId, nameOrId = attributeId });
 }
Пример #5
0
 public void Delete(int accountId, string channel, string keyword)
 {
     TDClient.Delete(ITEM, new { accountId, channel, keyword });
 }
Пример #6
0
 public void Delete(int accountId, int campaignId)
 {
     TDClient.Delete(ITEM, new { accountId, campaignId });
 }
 public void Delete(int accountId, int contentId, int templateId)
 {
     TDClient.Delete(ITEM, new { accountId, contentId, templateId });
 }
Пример #8
0
 public void Stop(int accountId, int actionId)
 {
     TDClient.Delete(ITEM, new { accountId, actionId });
 }
Пример #9
0
 public void Revoke(int accountId, int keyId)
 {
     TDClient.Delete(ITEM, new { accountId, keyId });
 }
Пример #10
0
 public void Delete(int accountId, string username)
 {
     TDClient.Delete(ITEM, new { accountId, username });
 }
Пример #11
0
 public void Delete(int accountId)
 {
     TDClient.Delete(ACCOUNT, new { accountId });
 }
Пример #12
0
 public void Delete(int accountId, int linkId)
 {
     TDClient.Delete(ITEM, new { accountId, linkId });
 }
Пример #13
0
 public void Delete(int accountId, int callbackId)
 {
     TDClient.Delete(ITEM, new { accountId, callbackId });
 }
Пример #14
0
 public void Delete(int accountId, int contactId, string name)
 {
     TDClient.Delete(ITEM, new { accountId, contactId, name });
 }
Пример #15
0
 public void StopConversation(int accountId, int conversationId)
 {
     TDClient.Delete(CONVERSATION_ITEM, new { accountId, conversationId });
 }
Пример #16
0
 public void Delete(int accountId, int definitionId)
 {
     TDClient.Delete(ITEM, new { accountId, definitionId });
 }
 public void Delete(int accountId, int listId, string couponCode)
 {
     TDClient.Delete(ITEM, new { accountId, listId, couponCode });
 }
Пример #18
0
 public void Delete(int accountId, int actionId, int scheduleId)
 {
     TDClient.Delete(ITEM, new { accountId, actionId, scheduleId });
 }
Пример #19
0
 public void DetachCampaign(int accountId, string channel, string keyword)
 {
     TDClient.Delete(KEYWORD_CAMPAIGN, new { accountId, channel, keyword });
 }