Interface Partial<T>


public interface Partial<T>
Partial

Represents a partial (optional fields) version of a type. In TypeScript this is Partial. In Java, this is typically handled through builder patterns or by making fields Optional.

This is a marker interface for partial configurations.