File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
azd/src/main/java/org/azd/git/types Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments