com.softlayer.api.service.policy.document.acceptance.Quote 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.policy.document.acceptance;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;
/**
* The SoftLayer_Billing_Oder_Quote data type records acceptance of policy documents for a quote.
*
* @see SoftLayer_Policy_Document_Acceptance_Quote
*/
@ApiType("SoftLayer_Policy_Document_Acceptance_Quote")
public class Quote extends Entity {
@ApiProperty
protected com.softlayer.api.service.billing.order.Quote resource;
public com.softlayer.api.service.billing.order.Quote getResource() {
return resource;
}
public void setResource(com.softlayer.api.service.billing.order.Quote resource) {
this.resource = resource;
}
public static class Mask extends com.softlayer.api.service.Entity.Mask {
public com.softlayer.api.service.billing.order.Quote.Mask resource() {
return withSubMask("resource", com.softlayer.api.service.billing.order.Quote.Mask.class);
}
}
}