import 'package:electronic_assistant/sdk/pay/assist/product_type.dart'; class AppleOrGooglePayInfo { final String _productId; final ProductType _type; final String? _accountToken; AppleOrGooglePayInfo(this._productId, this._type, this._accountToken); String get productId => _productId; ProductType get type => _type; String? get accountToken => _accountToken; }