struct CB::Model::Team
- CB::Model::Team
- Struct
- Value
- Object
Included Modules
- JSON::Serializable
Defined in:
models/team.crConstructors
- .new(id : String, name : String, is_personal : Bool, billing_email : Nil | String = nil, enforce_sso : Bool | Nil = nil, role : Nil | String = nil)
- .new(pull : JSON::PullParser)
Instance Method Summary
- #billing_email : String | Nil
- #billing_email=(billing_email : String | Nil)
- #enforce_sso : Bool | Nil
- #enforce_sso=(enforce_sso : Bool | Nil)
- #id : String
- #id=(id : String)
- #is_personal : Bool
- #is_personal=(is_personal : Bool)
- #name
- #name=(name : String)
- #role : String | Nil
- #role=(role : String | Nil)
-
#to_s(io : IO)
Same as
#inspect(io)
.
Constructor Detail
def self.new(id : String, name : String, is_personal : Bool, billing_email : Nil | String = nil, enforce_sso : Bool | Nil = nil, role : Nil | String = nil)
#