export interface Credientials {
    clientId?: string;
    clientSecret?: string;
    redirectUri?: string;
    userType?: 'Location' | 'Company';
    scopes?: string[];
    isWhiteLabel?: boolean;
    apiKey?: string;
}
