コード例 #1
0
        public CardPaymentRecurResponse(CardPaymentRecurResponseDto dto, HttpClient httpClient)
        {
            Payment = new CardPaymentRecurResponseDetails(dto.Payment);
            var operations = dto.Operations.Map();

            Operations = new CardPaymentOperations(operations, httpClient);
        }
コード例 #2
0
 internal CardPaymentResponse(CardPaymentResponseDto cardPaymentResponseDto, HttpClient httpClient)
 {
     Operations = new CardPaymentOperations(cardPaymentResponseDto.Operations.Map(), httpClient);
     Payment    = new CardPayment(cardPaymentResponseDto.Payment);
 }