com.softlayer.api.service.ticket.attachment.manual.Payment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of softlayer-api-client Show documentation
Show all versions of softlayer-api-client Show documentation
API client for accessing the SoftLayer API
The newest version!
package com.softlayer.api.service.ticket.attachment.manual;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.billing.payment.card.ManualPayment;
import com.softlayer.api.service.ticket.Attachment;
/**
* This datatype contains tickets referenced from manual payments
*
* @see SoftLayer_Ticket_Attachment_Manual_Payment
*/
@ApiType("SoftLayer_Ticket_Attachment_Manual_Payment")
public class Payment extends Attachment {
/**
* The manual payment that is attached to a ticket.
*/
@ApiProperty
protected ManualPayment resource;
public ManualPayment getResource() {
return resource;
}
public void setResource(ManualPayment resource) {
this.resource = resource;
}
public static class Mask extends com.softlayer.api.service.ticket.Attachment.Mask {
public com.softlayer.api.service.billing.payment.card.ManualPayment.Mask resource() {
return withSubMask("resource", com.softlayer.api.service.billing.payment.card.ManualPayment.Mask.class);
}
}
}