Skip to content

Commit 6b05030

Browse files
author
Mykhailo Shchukin
committed
use ID for Folders linkage
1 parent 82f236b commit 6b05030

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/exacttarget/fuelsdk/ETFolder.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@
3434

3535
package com.exacttarget.fuelsdk;
3636

37-
import java.util.Date;
38-
3937
import com.exacttarget.fuelsdk.annotations.ExternalName;
4038
import com.exacttarget.fuelsdk.annotations.InternalName;
4139
import com.exacttarget.fuelsdk.annotations.InternalProperty;
4240
import com.exacttarget.fuelsdk.annotations.SoapObject;
4341
import com.exacttarget.fuelsdk.internal.DataFolder;
4442

43+
import java.util.Date;
44+
4545
/**
4646
* An <code>ETFolder</code> object represents a folder
4747
* in the Salesforce Marketing Cloud.
@@ -65,7 +65,7 @@ public class ETFolder extends ETSoapObject {
6565
@ExternalName("contentType")
6666
private String contentType = null;
6767
@ExternalName("parentFolder")
68-
@InternalProperty("ParentFolder.CustomerKey")
68+
@InternalProperty("ParentFolder.ID")
6969
private ETFolder parentFolder = null;
7070
@ExternalName("isActive")
7171
private Boolean isActive = null;

0 commit comments

Comments
 (0)