EmbedGetEmbedExternalViewOutput constructor

  1. @JsonSerializable.new(includeIfNull: false)
const EmbedGetEmbedExternalViewOutput({
  1. @EmbedExternalViewConverter() EmbedExternalView? view,
  2. @RepoStrongRefConverter() List<RepoStrongRef>? associatedRefs,
  3. List<Map<String, dynamic>>? associatedRecords,
  4. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory EmbedGetEmbedExternalViewOutput({
  /// Hydrated view of the embed. Present only when the resolved records back the requested URL and supply enough information to populate the required `viewExternal` fields. Omitted alongside the rest of the response when no records resolved or validation failed.
  @EmbedExternalViewConverter() EmbedExternalView? view,
  @RepoStrongRefConverter() List<RepoStrongRef>? associatedRefs,
  List<Map<String, dynamic>>? associatedRecords,

  Map<String, dynamic>? $unknown,
}) = _EmbedGetEmbedExternalViewOutput;