pub struct GoogleCloudChannelV1Plan {
pub billing_account: Option<String>,
pub payment_cycle: Option<GoogleCloudChannelV1Period>,
pub payment_plan: Option<String>,
pub payment_type: Option<String>,
pub trial_period: Option<GoogleCloudChannelV1Period>,
}Expand description
The payment plan for the Offer. Describes how to make a payment.
This type is not used in any activity, and only used as part of another schema.
Fields§
§billing_account: Option<String>Reseller Billing account to charge after an offer transaction. Only present for Google Cloud offers.
payment_cycle: Option<GoogleCloudChannelV1Period>Describes how frequently the reseller will be billed, such as once per month.
payment_plan: Option<String>Describes how a reseller will be billed.
payment_type: Option<String>Specifies when the payment needs to happen.
trial_period: Option<GoogleCloudChannelV1Period>Present for Offers with a trial period. For trial-only Offers, a paid service needs to start before the trial period ends for continued service. For Regular Offers with a trial period, the regular pricing goes into effect when trial period ends, or if paid service is started before the end of the trial period.
Trait Implementations§
Source§impl Clone for GoogleCloudChannelV1Plan
impl Clone for GoogleCloudChannelV1Plan
Source§fn clone(&self) -> GoogleCloudChannelV1Plan
fn clone(&self) -> GoogleCloudChannelV1Plan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GoogleCloudChannelV1Plan
impl Debug for GoogleCloudChannelV1Plan
Source§impl Default for GoogleCloudChannelV1Plan
impl Default for GoogleCloudChannelV1Plan
Source§fn default() -> GoogleCloudChannelV1Plan
fn default() -> GoogleCloudChannelV1Plan
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudChannelV1Plan
impl<'de> Deserialize<'de> for GoogleCloudChannelV1Plan
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for GoogleCloudChannelV1Plan
Auto Trait Implementations§
impl Freeze for GoogleCloudChannelV1Plan
impl RefUnwindSafe for GoogleCloudChannelV1Plan
impl Send for GoogleCloudChannelV1Plan
impl Sync for GoogleCloudChannelV1Plan
impl Unpin for GoogleCloudChannelV1Plan
impl UnsafeUnpin for GoogleCloudChannelV1Plan
impl UnwindSafe for GoogleCloudChannelV1Plan
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more