com.yandex.money.api.model.MoneySource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ym-java-epr-sdk Show documentation
Show all versions of ym-java-epr-sdk Show documentation
This Java library contains classes that allows you to do payments using Yandex.Money public API.
The newest version!
package com.yandex.money.api.model;
/**
* Some money source: wallet, card, etc.
*
* @author Slava Yasevich ([email protected])
*/
public abstract class MoneySource {
private final String id;
/**
* Constructor.
*
* @param id unique money source id
*/
protected MoneySource(String id) {
this.id = id;
}
/**
* @return unique money source id
*/
public String getId() {
return id;
}
@Override
public String toString() {
return "MoneySource{" +
"id='" + id + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy