Struct fractal_dto::v1::oauth::CreateClientDTO[][src]

pub struct CreateClientDTO {
    pub name: String,
    pub scopes: Vec<ScopeDTO>,
    pub request_limit: Option<usize>,
}

Struct for creating a fractal developer

Fields

The name of the client

The permissions the client has

Number of requests per hour that the client will be able to do

Trait Implementations

impl Clone for CreateClientDTO
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Encodable for CreateClientDTO
[src]

Serialize a value using an Encoder.

impl Decodable for CreateClientDTO
[src]

Deserialize a value using a Decoder.

impl DTO for CreateClientDTO
[src]

Auto Trait Implementations