Class ScanReport.Intelligence.License.Builder
-
- All Implemented Interfaces:
public final class ScanReport.Intelligence.License.BuilderA builder for License.
-
-
Method Summary
-
-
Method Detail
-
name
final ScanReport.Intelligence.License.Builder name(String name)
Name of the license
-
name
final ScanReport.Intelligence.License.Builder name(JsonField<String> name)
Sets Builder.name to an arbitrary JSON value.
You should usually call Builder.name with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
sha256
final ScanReport.Intelligence.License.Builder sha256(String sha256)
SHA256 hash of the license file
-
sha256
final ScanReport.Intelligence.License.Builder sha256(JsonField<String> sha256)
Sets Builder.sha256 to an arbitrary JSON value.
You should usually call Builder.sha256 with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final ScanReport.Intelligence.License.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ScanReport.Intelligence.License.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ScanReport.Intelligence.License.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ScanReport.Intelligence.License.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ScanReport.Intelligence.License.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ScanReport.Intelligence.License build()
Returns an immutable instance of License.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.name() .sha256()
-
-
-
-