All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.softlayer.api.service.ticket.attachment.CardChangeRequest Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
package com.softlayer.api.service.ticket.attachment;

import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.billing.payment.card.ChangeRequest;
import com.softlayer.api.service.ticket.Attachment;

/**
 * This datatype contains tickets referenced from card change request 
 *
 * @see SoftLayer_Ticket_Attachment_CardChangeRequest
 */
@ApiType("SoftLayer_Ticket_Attachment_CardChangeRequest")
public class CardChangeRequest extends Attachment {

    /**
     * The card change request that is attached to a ticket.
     */
    @ApiProperty
    protected ChangeRequest resource;

    public ChangeRequest getResource() {
        return resource;
    }

    public void setResource(ChangeRequest resource) {
        this.resource = resource;
    }

    public static class Mask extends com.softlayer.api.service.ticket.Attachment.Mask {

        public com.softlayer.api.service.billing.payment.card.ChangeRequest.Mask resource() {
            return withSubMask("resource", com.softlayer.api.service.billing.payment.card.ChangeRequest.Mask.class);
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy