Type Alias AdjustCustomerBalanceResponse

AdjustCustomerBalanceResponse: {
    adjustment: number;
    customerId: string;
    newBalance: number;
    previousBalance: number;
    reason: string;
    success: true;
    timestamp: string;
}