9 lines
201 B
Java
9 lines
201 B
Java
package it.acxent.bank.stripe;
|
|
|
|
public class CreatePaymentResponse {
|
|
private String clientSecret;
|
|
|
|
public CreatePaymentResponse(String clientSecret) {
|
|
this.clientSecret = clientSecret;
|
|
}
|
|
}
|