Class InlineSkillSource
-
- All Implemented Interfaces:
public final class InlineSkillSourceInline skill payload
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classInlineSkillSource.BuilderA builder for InlineSkillSource.
-
Method Summary
Modifier and Type Method Description final Stringdata()Base64-encoded skill zip bundle. final JsonValue_mediaType()The media type of the inline skill payload. final JsonValue_type()The type of the inline skill source. final JsonField<String>_data()Returns the raw JSON value of data. final Map<String, JsonValue>_additionalProperties()final InlineSkillSource.BuildertoBuilder()final InlineSkillSourcevalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static InlineSkillSource.Builderbuilder()Returns a mutable builder for constructing an instance of InlineSkillSource. -
-
Method Detail
-
_mediaType
final JsonValue _mediaType()
The media type of the inline skill payload. Must be
application/zip.Expected to always return the following:
JsonValue.from("application/zip")However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_type
final JsonValue _type()
The type of the inline skill source. Must be
base64.Expected to always return the following:
JsonValue.from("base64")However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_data
final JsonField<String> _data()
Returns the raw JSON value of data.
Unlike data, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final InlineSkillSource.Builder toBuilder()
-
validate
final InlineSkillSource validate()
Validates that the types of all values in this object match their expected types recursively.
This method is not forwards compatible with new types from the API for existing fields.
-
builder
final static InlineSkillSource.Builder builder()
Returns a mutable builder for constructing an instance of InlineSkillSource.
The following fields are required:
.data()
-
-
-
-