Add

概要 

アカウントに送信分類を追加します。

構文 

Add(1)

関数のプロパティ 

序数説明
1object必須新しい送信分類のプロパティを表す JSON オブジェクト

例 

このサンプルコードは、アカウントに送信分類を追加します。

1var newSC = {
2    CustomerKey : "mySCKey",
3    Name : "SSJS Test SC",
4    Description : "Test SSJS description",
5    SenderProfileKey : "mySPKey",
6    DeliveryProfileKey : "myDPKey"
7};
8
9SendClassification.Add(newSC);