File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/serviceplans Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 18
18
19
19
import com .fasterxml .jackson .annotation .JsonProperty ;
20
20
import com .fasterxml .jackson .databind .annotation .JsonDeserialize ;
21
+ import org .cloudfoundry .Nullable ;
21
22
import org .immutables .value .Value ;
22
23
23
24
import java .util .Map ;
@@ -33,18 +34,21 @@ abstract class _Parameters {
33
34
* The JSON schema
34
35
*/
35
36
@ JsonProperty ("$schema" )
37
+ @ Nullable
36
38
abstract String getJsonSchema ();
37
39
38
40
/**
39
41
* The parameter type
40
42
*/
41
43
@ JsonProperty ("type" )
44
+ @ Nullable
42
45
abstract String getType ();
43
46
44
47
/**
45
48
* The parameter properties
46
49
*/
47
50
@ JsonProperty ("properties" )
51
+ @ Nullable
48
52
abstract Map <String , Object > getProperties ();
49
53
50
54
}
Original file line number Diff line number Diff line change 18
18
19
19
import com .fasterxml .jackson .annotation .JsonProperty ;
20
20
import com .fasterxml .jackson .databind .annotation .JsonDeserialize ;
21
+ import org .cloudfoundry .Nullable ;
21
22
import org .immutables .value .Value ;
22
23
23
24
/**
@@ -31,6 +32,7 @@ abstract class _Schema {
31
32
* The schema parameters
32
33
*/
33
34
@ JsonProperty ("parameters" )
35
+ @ Nullable
34
36
abstract Parameters getParameters ();
35
37
36
38
}
You can’t perform that action at this time.
0 commit comments