Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,6 @@ public class ExtractResponse extends BaseResponse {
@Param(description = "type of the storage")
private String storageType;

@SerializedName("storage")
private String storage;

@SerializedName(ApiConstants.ZONE_ID)
@Param(description = "zone ID the object was extracted from")
private String zoneId;
Expand Down Expand Up @@ -176,14 +173,6 @@ public void setStorageType(String storageType) {
this.storageType = storageType;
}

public String getStorage() {
return storage;
}

public void setStorage(String storage) {
this.storage = storage;
}

public String getZoneId() {
return zoneId;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,6 @@ public class ZoneResponse extends BaseResponse {
@Param(description = "the guest CIDR address for the Zone")
private String guestCidrAddress;

//TODO - generate description
@SerializedName("status")
private String status;

@SerializedName(ApiConstants.DISPLAY_TEXT)
@Param(description = "the display text of the zone")
private String displayText;
Expand Down Expand Up @@ -165,10 +161,6 @@ public void setGuestCidrAddress(String guestCidrAddress) {
this.guestCidrAddress = guestCidrAddress;
}

public void setStatus(String status) {
this.status = status;
}

public void setDisplayText(String displayText) {
this.displayText = displayText;
}
Expand Down Expand Up @@ -272,10 +264,6 @@ public String getGuestCidrAddress() {
return guestCidrAddress;
}

public String getStatus() {
return status;
}

public String getDisplayText() {
return displayText;
}
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.