namespace AIStudio.Tools.ERIClient.DataModel;
///
/// Describes one authentication scheme for this data source.
///
/// The method used for authentication, e.g., "API Key," "Username/Password," etc.
/// A list of field mappings for the authentication method. The client must know,
/// e.g., how the password field is named in the request.
public readonly record struct AuthScheme(AuthMethod AuthMethod, List AuthFieldMappings);