PendingPaymentSchedule

constructor(    id: String,     merchantId: String,     storeId: String,     paymentId: String,     billingKey: String,     orderName: String,     isCulturalExpense: Boolean,     isEscrow: Boolean,     customer: Customer,     customData: String,     totalAmount: Long,     taxFreeAmount: Long? = null,     vatAmount: Long? = null,     currency: Currency,     installmentMonth: Int? = null,     noticeUrls: List<String>? = null,     products: List<PaymentProduct>? = null,     createdAt: @Serializable(with = InstantSerializer::class) Instant,     timeToPay: @Serializable(with = InstantSerializer::class) Instant,     startedAt: @Serializable(with = InstantSerializer::class) Instant,     completedAt: @Serializable(with = InstantSerializer::class) Instant)