
com.softlayer.api.service.ticket.attachment.ManualPayment Maven / Gradle / Ivy
package com.softlayer.api.service.ticket.attachment;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.ticket.Attachment;
/**
* This datatype contains tickets referenced from manual payments
*
* @see SoftLayer_Ticket_Attachment_ManualPayment
*/
@ApiType("SoftLayer_Ticket_Attachment_ManualPayment")
public class ManualPayment extends Attachment {
/**
* The manual payment that is attached to a ticket.
*/
@ApiProperty
protected com.softlayer.api.service.billing.payment.card.ManualPayment resource;
public com.softlayer.api.service.billing.payment.card.ManualPayment getResource() {
return resource;
}
public void setResource(com.softlayer.api.service.billing.payment.card.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);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy