[][src]Struct heroku_rs::endpoints::teams::Team

pub struct Team {
    pub id: String,
    pub created_at: DateTime<Utc>,
    pub credit_card_collections: bool,
    pub default: bool,
    pub enterprise_account: Option<EnterpriseAccount>,
    pub identity_provider: Option<IdentityProvider>,
    pub membership_limit: Option<i64>,
    pub name: String,
    pub provisioned_licenses: bool,
    pub role: Option<String>,
    pub type_field: String,
    pub updated_at: DateTime<Utc>,
}

Team

Stability: development

Teams allow you to manage access to a shared group of applications and other resources.

For more information please refer to the Heroku documentation

Fields

id: Stringcreated_at: DateTime<Utc>

when the team was created

credit_card_collections: bool

whether charges incurred by the team are paid by credit card.

default: bool

whether to use this team when none is specified

enterprise_account: Option<EnterpriseAccount>

Entererprise account associated with the Team

identity_provider: Option<IdentityProvider>

Identity Provider associated with the Team

membership_limit: Option<i64>

upper limit of members allowed in a team.

name: String

unique name of team

provisioned_licenses: bool

whether the team is provisioned licenses by salesforce.

role: Option<String>

role in the team one of:"admin" or "collaborator" or "member" or "owner" or null(None)

type_field: String

type of team. one of:"enterprise" or "team"

updated_at: DateTime<Utc>

when the team was updated

Trait Implementations

impl ApiResult for Team[src]

impl Clone for Team[src]

impl Debug for Team[src]

impl<'de> Deserialize<'de> for Team[src]

impl Eq for Team[src]

impl<'a> HerokuEndpoint<Team, (), ()> for TeamDelete<'a>[src]

impl<'a> HerokuEndpoint<Team, (), ()> for TeamDetails<'a>[src]

impl<'a> HerokuEndpoint<Team, (), TeamAppUpdateLockedParams> for TeamAppUpdateLocked<'a>[src]

impl<'a> HerokuEndpoint<Team, (), TeamCreateByEAParams<'a>> for TeamCreateByEA<'a>[src]

impl<'a> HerokuEndpoint<Team, (), TeamCreateParams<'a>> for TeamCreate<'a>[src]

impl<'a> HerokuEndpoint<Team, (), TeamUpdateParams<'a>> for TeamUpdate<'a>[src]

impl PartialEq<Team> for Team[src]

impl Serialize for Team[src]

impl StructuralEq for Team[src]

impl StructuralPartialEq for Team[src]

Auto Trait Implementations

impl RefUnwindSafe for Team

impl Send for Team

impl Sync for Team

impl Unpin for Team

impl UnwindSafe for Team

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.