ServiceRecord constructor
Implementation
@JsonSerializable(includeIfNull: false)
const factory ServiceRecord({
/// The unique namespace for this lex object.
///
/// `app.bsky.labeler.service`
@Default(appBskyLabelerService) @JsonKey(name: r'$type') String $type,
@LabelerPoliciesConverter() required LabelerPolicies policies,
@UServiceLabelConverter() UServiceLabel? labels,
required DateTime createdAt,
/// Contains unknown objects not defined in Lexicon.
@JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _ServiceRecord;