/**
 * Input data schema for the login method of the auth component.
 */
export interface UserCredentials {
  /**
   * Business alias
   * - single word text description of the business that is set at creation.
   */
  business: string;
  /**
   * User unique email address
   */
  email: string;
  /**
   * Encrypted password.
   */
  password: string;
}
