public InitPaymentRequest(PlatronMoney money, string description)
        {
            Ensure.ArgumentNotNull(money, "money");
            Ensure.ArgumentNotNullOrEmptyString(description, "description");

            Money       = money;
            Description = description;
        }
        public InitPaymentRequest(PlatronMoney money, string description)
        {
            Ensure.ArgumentNotNull(money, "money");
            Ensure.ArgumentNotNullOrEmptyString(description, "description");

            Money = money;
            Description = description;
        }