UpdateResult constructor
Implementation
@JsonSerializable(includeIfNull: false)
const factory UpdateResult({
/// The unique namespace for this lex object.
///
/// `com.atproto.repo.applyWrites#updateResult`
@Default(comAtprotoRepoApplyWritesUpdateResult)
@JsonKey(name: r'$type')
String $type,
@AtUriConverter() required AtUri uri,
required String cid,
@UUpdateResultValidationStatusConverter()
UUpdateResultValidationStatus? validationStatus,
/// Contains unknown objects not defined in Lexicon.
@JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _UpdateResult;