RepoApplyWritesInput constructor
Implementation
@JsonSerializable(includeIfNull: false)
const factory RepoApplyWritesInput({
/// The handle or DID of the repo (aka, current account).
required String repo,
/// Can be set to 'false' to skip Lexicon schema validation of record data across all operations, 'true' to require it, or leave unset to validate only for known Lexicons.
bool? validate,
@URepoApplyWritesWritesConverter()
required List<URepoApplyWritesWrites> writes,
/// If provided, the entire operation will fail if the current repo commit CID does not match this value. Used to prevent conflicting repo mutations.
String? swapCommit,
Map<String, dynamic>? $unknown,
}) = _RepoApplyWritesInput;