PlatformFeeInput

@Serializable
data class PlatformFeeInput(val fixedRate: Int? = null, val fixedAmount: Long? = null)

수수료 계산 방식을 특정하기 위한 입력 정보

정률 수수료를 설정하고 싶은 경우 fixedRate 필드에, 정액 수수료를 설정하고 싶은 경우 fixedAmount 필드에 값을 명시해 요청합니다. 두 필드 모두 값이 들어있지 않은 경우 요청이 거절됩니다.

Constructors

Link copied to clipboard
constructor(fixedRate: Int? = null, fixedAmount: Long? = null)

Properties

Link copied to clipboard
val fixedAmount: Long? = null

정액 수수료

Link copied to clipboard
val fixedRate: Int? = null

정률 수수료