auth0-management 0.0.4

An unofficial client for Auth0 Management API.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use serde::{Deserialize, Serialize};
use std::collections::HashMap;

/// Connection
#[derive(Serialize, Deserialize)]
pub struct Connection {
  /// The connection's identifier.
  id: String,
  /// The name of the connection.
  name: String,
  /// The type of the connection, related to the identity provider.
  strategy: String,
  /// Connection name used in login screen.
  display_name: String,

  options: HashMap<String, String>,
}