using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace framework_library { [Serializable] public class Transactions : PaymentAbstractRequest { private string reference; public Transactions(string refe) { this.endpoint = "payment/"; this.method = "GET"; this.reference = refe; } } }