Skip to content

Commit

Permalink
Fix: #207 인앱 결제 API 요청 DTO 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeJae-H committed Dec 4, 2024
1 parent ee220f4 commit 29d1457
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
package com.gt.genti.purchase.dto.request;

import lombok.AccessLevel;
import lombok.Getter;
import lombok.NoArgsConstructor;

@Getter
@NoArgsConstructor(access = AccessLevel.PROTECTED) // 있어야함
public class PurchaseRequestDto {
private String packageName; //인앱 상품이 판매된 애플리케이션의 패키지 이름
private String productId; //인앱 상품 SKU
Expand Down

0 comments on commit 29d1457

Please sign in to comment.