Class SpanIFrame
-
- All Implemented Interfaces:
public final class SpanIFrame
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classSpanIFrame.BuilderA builder for SpanIFrame.
-
Method Summary
Modifier and Type Method Description final Stringid()Unique identifier for the span iframe final Stringname()Name of the span iframe final StringprojectId()Unique identifier for the project that the span iframe belongs under final Stringurl()URL to embed the project viewer in an iframe final Optional<OffsetDateTime>created()Date of span iframe creation final Optional<OffsetDateTime>deletedAt()Date of span iframe deletion, or null if the span iframe is still active final Optional<String>description()Textual description of the span iframe final Optional<Boolean>postMessage()Whether to post messages to the iframe containing the span's data. final Optional<String>userId()Identifies the user who created the span iframe final JsonField<String>_id()Returns the raw JSON value of id. final JsonField<String>_name()Returns the raw JSON value of name. final JsonField<String>_projectId()Returns the raw JSON value of projectId. final JsonField<String>_url()Returns the raw JSON value of url. final JsonField<OffsetDateTime>_created()Returns the raw JSON value of created. final JsonField<OffsetDateTime>_deletedAt()Returns the raw JSON value of deletedAt. final JsonField<String>_description()Returns the raw JSON value of description. final JsonField<Boolean>_postMessage()Returns the raw JSON value of postMessage. final JsonField<String>_userId()Returns the raw JSON value of userId. final Map<String, JsonValue>_additionalProperties()final SpanIFramevalidate()final SpanIFrame.BuildertoBuilder()Booleanequals(Object other)IntegerhashCode()StringtoString()final static SpanIFrame.Builderbuilder()Returns a mutable builder for constructing an instance of SpanIFrame. -
-
Method Detail
-
projectId
final String projectId()
Unique identifier for the project that the span iframe belongs under
-
created
final Optional<OffsetDateTime> created()
Date of span iframe creation
-
deletedAt
final Optional<OffsetDateTime> deletedAt()
Date of span iframe deletion, or null if the span iframe is still active
-
description
final Optional<String> description()
Textual description of the span iframe
-
postMessage
final Optional<Boolean> postMessage()
Whether to post messages to the iframe containing the span's data. This is useful when you want to render more data than fits in the URL.
-
_id
final JsonField<String> _id()
Returns the raw JSON value of id.
Unlike id, this method doesn't throw if the JSON field has an unexpected type.
-
_name
final JsonField<String> _name()
Returns the raw JSON value of name.
Unlike name, this method doesn't throw if the JSON field has an unexpected type.
-
_projectId
final JsonField<String> _projectId()
Returns the raw JSON value of projectId.
Unlike projectId, this method doesn't throw if the JSON field has an unexpected type.
-
_url
final JsonField<String> _url()
Returns the raw JSON value of url.
Unlike url, this method doesn't throw if the JSON field has an unexpected type.
-
_created
final JsonField<OffsetDateTime> _created()
Returns the raw JSON value of created.
Unlike created, this method doesn't throw if the JSON field has an unexpected type.
-
_deletedAt
final JsonField<OffsetDateTime> _deletedAt()
Returns the raw JSON value of deletedAt.
Unlike deletedAt, this method doesn't throw if the JSON field has an unexpected type.
-
_description
final JsonField<String> _description()
Returns the raw JSON value of description.
Unlike description, this method doesn't throw if the JSON field has an unexpected type.
-
_postMessage
final JsonField<Boolean> _postMessage()
Returns the raw JSON value of postMessage.
Unlike postMessage, this method doesn't throw if the JSON field has an unexpected type.
-
_userId
final JsonField<String> _userId()
Returns the raw JSON value of userId.
Unlike userId, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final SpanIFrame validate()
-
toBuilder
final SpanIFrame.Builder toBuilder()
-
builder
final static SpanIFrame.Builder builder()
Returns a mutable builder for constructing an instance of SpanIFrame.
The following fields are required:
.id() .name() .projectId() .url()
-
-
-
-