Type Alias CopyProcedureResponse

Source
pub type CopyProcedureResponse = Procedure;

Aliased Type§

struct CopyProcedureResponse {
    pub id: String,
    pub name: String,
    pub description: String,
    pub updated_at: i64,
    pub tags: Vec<String>,
    pub info: (),
    pub config: ProcedureConfig,
    pub base_permission: PermissionLevel,
}

Fields§

§id: String

The Mongo ID of the resource. This field is de/serialized from/to JSON as { "_id": { "$oid": "..." }, ...(rest of serialized Resource<T>) }

§name: String

The resource name. This is guaranteed unique among others of the same resource type.

§description: String

A description for the resource

§updated_at: i64

When description last updated

§tags: Vec<String>

Tag Ids

§info: ()

Resource-specific information (not user configurable).

§config: ProcedureConfig

Resource-specific configuration.

§base_permission: PermissionLevel

Set a base permission level that all users will have on the resource.