@e2y/occ-client
Version:
OCC client for SAP Commerce Cloud
10 lines (9 loc) • 403 B
TypeScript
import { OAuth2ClientCredentialsConfiguration } from './OAuth2ClientCredentialsConfiguration';
/**
* Represents the configuration options for OAuth2 authentication using the password grant type.
* Extends the `OAuth2ClientCredentialsConfiguration` interface.
*/
export interface OAuth2PasswordConfiguration extends OAuth2ClientCredentialsConfiguration {
username: string;
password: string;
}