pub struct CustomerPortalSessionUrls {
pub general: CustomerPortalSessionGeneralUrls,
pub subscriptions: Vec<CustomerPortalSessionSubscriptionUrls>,
}Expand description
Authenticated customer portal deep links. For security, the token appended to each link is temporary. You shouldn’t store these links.
Fields§
§general: CustomerPortalSessionGeneralUrlsAuthenticated customer portal deep links that aren’t associated with a specific entity.
subscriptions: Vec<CustomerPortalSessionSubscriptionUrls>List of generated authenticated customer portal deep links for the subscriptions passed in the subscription_ids array in the request.
If subscriptions are paused or canceled, links open the overview page for a subscription.
Empty if no subscriptions passed in the request.
Trait Implementations§
Source§impl Clone for CustomerPortalSessionUrls
impl Clone for CustomerPortalSessionUrls
Source§fn clone(&self) -> CustomerPortalSessionUrls
fn clone(&self) -> CustomerPortalSessionUrls
Returns a duplicate of the value. Read more
1.0.0 · 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 CustomerPortalSessionUrls
impl Debug for CustomerPortalSessionUrls
Source§impl<'de> Deserialize<'de> for CustomerPortalSessionUrls
impl<'de> Deserialize<'de> for CustomerPortalSessionUrls
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
Auto Trait Implementations§
impl Freeze for CustomerPortalSessionUrls
impl RefUnwindSafe for CustomerPortalSessionUrls
impl Send for CustomerPortalSessionUrls
impl Sync for CustomerPortalSessionUrls
impl Unpin for CustomerPortalSessionUrls
impl UnwindSafe for CustomerPortalSessionUrls
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