makeLoyaltyInquiry() 공개 메소드

public makeLoyaltyInquiry ( LoyaltyInquiryRequest $request ) : LoyaltyInquiryResponse
$request Payu\Request\LoyaltyInquiryRequest
리턴 Payu\Response\LoyaltyInquiryResponse
예제 #1
0
 public function testMakeLoyaltyInquiry()
 {
     $request = $this->client->createLoyaltyInquiryRequestBuilder()->buildCard('4282209027132016', '123', '5', '2019')->buildCurrency('TRY')->build();
     $result = $this->client->makeLoyaltyInquiry($request);
     $this->assertTrue($result instanceof LoyaltyInquiryResponse);
 }