com.messagebird.objects.ChildAccountCreateResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of messagebird-api Show documentation
Show all versions of messagebird-api Show documentation
The MessageBird API provides a API to the MessageBird SMS and voicemail services located at https://www.messagebird.com.
The newest version!
package com.messagebird.objects;
import java.util.List;
public class ChildAccountCreateResponse extends ChildAccountResponse{
private List accessKeys;
private String signingKey;
private String invoiceAggregation;
private String paymentMoment;
public List getAccessKeys() {
return accessKeys;
}
public void setAccessKeys(List accessKeys) {
this.accessKeys = accessKeys;
}
public String getSigningKey() {
return signingKey;
}
public void setSigningKey(String signingKey) {
this.signingKey = signingKey;
}
public String getInvoiceAggregation() {
return invoiceAggregation;
}
public void setInvoiceAggregation(String invoiceAggregation) {
this.invoiceAggregation = invoiceAggregation;
}
public String getPaymentMoment() {
return paymentMoment;
}
public void setPaymentMoment(String paymentMoment) {
this.paymentMoment = paymentMoment;
}
@Override
public String toString() {
return "ChildAccountCreateResponse{" +
"id='" + getId() + '\'' +
", name='" + getName() + '\'' +
", accessKeys=" + accessKeys + '\'' +
", invoiceAggregation='" + invoiceAggregation + '\'' +
", paymentMoment='" + paymentMoment + '\'' +
'}';
}
}