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