Skip to content

Commit fdc7641

Browse files
committed
Added properties field
1 parent b49a634 commit fdc7641

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

azd/src/main/java/org/azd/git/types/GitStatus.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ public class GitStatus extends BaseAbstractMethod {
4545
**/
4646
@JsonProperty("id")
4747
private int id;
48+
/**
49+
* Custom properties of the status.
50+
*/
51+
@JsonProperty("properties")
52+
private PropertiesCollection properties;
4853
/**
4954
* State of the status.
5055
**/
@@ -96,4 +101,12 @@ public class GitStatus extends BaseAbstractMethod {
96101
public String getUpdatedDate() { return updatedDate; }
97102

98103
public void setUpdatedDate(String updatedDate) { this.updatedDate = updatedDate; }
104+
105+
public PropertiesCollection getProperties() {
106+
return properties;
107+
}
108+
109+
public void setProperties(PropertiesCollection properties) {
110+
this.properties = properties;
111+
}
99112
}

0 commit comments

Comments
 (0)