Class BetaInlineSkillSource
-
- All Implemented Interfaces:
public final class BetaInlineSkillSourceInline skill payload
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classBetaInlineSkillSource.BuilderA builder for BetaInlineSkillSource.
-
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 BetaInlineSkillSource.BuildertoBuilder()final BetaInlineSkillSourcevalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static BetaInlineSkillSource.Builderbuilder()Returns a mutable builder for constructing an instance of BetaInlineSkillSource. -
-
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 BetaInlineSkillSource.Builder toBuilder()
-
validate
final BetaInlineSkillSource 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 BetaInlineSkillSource.Builder builder()
Returns a mutable builder for constructing an instance of BetaInlineSkillSource.
The following fields are required:
.data()
-
-
-
-