Skip to content

Commit 4c72847

Browse files
committed
Merge pull request #3 from ccpmark/feature/space-types
Added Space Types
2 parents 9191d3c + 7072efc commit 4c72847

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

  • src/main/java/com/robinpowered/sdk/model

src/main/java/com/robinpowered/sdk/model/Space.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ public class Space implements IdentifiableApiResponseModel {
3737
private String image;
3838
private Float discoveryRadius;
3939
private Integer capacity;
40+
private String type;
4041
private Boolean isDisabled;
4142

4243
// Submodels
@@ -159,6 +160,14 @@ public void setNextEvent(Event nextEvent) {
159160
this.nextEvent = nextEvent;
160161
}
161162

163+
public String getType() {
164+
return type;
165+
}
166+
167+
public void setType(String type) {
168+
this.type = type;
169+
}
170+
162171
@Override
163172
public boolean equals(Object o) {
164173
if (this == o) return true;
@@ -186,6 +195,7 @@ public String toString() {
186195
", image='" + image + '\'' +
187196
", discoveryRadius=" + discoveryRadius +
188197
", capacity=" + capacity +
198+
", type=" + type +
189199
", isDisabled=" + isDisabled +
190200
", isDibsed=" + isDibsed +
191201
", updatedAt=" + updatedAt +

0 commit comments

Comments
 (0)