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

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

Struct with the developer client information

Fields

The ID of the client

The name of the client

The secret of the client

The scopes of the client

The request limit of the client

Trait Implementations

impl Clone for ClientInfoDTO
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Encodable for ClientInfoDTO
[src]

Serialize a value using an Encoder.

impl Decodable for ClientInfoDTO
[src]

Deserialize a value using a Decoder.

impl DTO for ClientInfoDTO
[src]