fundamentum_sdk_api/models/
constants.rs

1//! Shared constants throughout the models and API
2
3/// Default Asset type if not are provided when provisioning.
4/// Link : <https://dimonoff.atlassian.net/wiki/spaces/F2/pages/306166693917/Provisioning#Inputs%3A.1>.
5pub const DEFAULT_ASSET_TYPE_ID: i32 = 2;
6
7/// Path to the API's status.
8pub const STATUS_PATH: &str = "/status";
9/// Path to the Open API (Swagger) Json file.
10pub const OPEN_API_DOWNLOAD_PATH: &str = "/swagger.json";
11
12/// Path to provision devices.
13pub const PROVISIONING_PATH: &str = "/provision";