com.instamojo.wrapper.model.Payment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of instamojo-java Show documentation
Show all versions of instamojo-java Show documentation
Instamojo Payments Java Wrapper
The newest version!
package com.instamojo.wrapper.model;
public class Payment {
/**
* The id.
*/
private String id;
/**
* The status.
*/
private String status;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
@Override
public String toString() {
return "Payment{" + "id='" + id + '\'' +
", status='" + status + '\'' +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy