Type Alias CPHCSMAccessTokenResponse

CPHCSMAccessTokenResponse: {
    appName: string;
    auth: {
        access_token: string;
        expires_at: number;
        expires_in: number;
        scope: string;
        token_type: string;
    };
    baseUrl: string;
    contentTypeName: string;
}