pub struct ApprovalRequest {
Show 15 fields pub request_id: Uuid, pub requester: Entity, pub created_at: i64, pub acct_id: Uuid, pub operation: String, pub method: String, pub body: Option<Value>, pub approvers: Vec<Entity>, pub denier: Option<Entity>, pub denial_reason: Option<String>, pub reviewers: Option<Vec<Entity>>, pub status: ApprovalRequestStatus, pub subjects: Option<Vec<ApprovalSubject>>, pub description: Option<String>, pub expiry: i64,
}

Fields

request_id: Uuid

UUID uniquely identifying this approval request.

requester: Entitycreated_at: i64

When this approval request was created.

acct_id: Uuid

The account ID of the account that this approval request belongs to.

operation: String

Operation URL path, e.g. /crypto/v1/keys, /crypto/v1/groups/<id>.

method: String

Method for the operation: POST, PATCH, PUT, DELETE, or GET. Default is POST.

body: Option<Value>approvers: Vec<Entity>denier: Option<Entity>denial_reason: Option<String>

Reason given by denier.

reviewers: Option<Vec<Entity>>status: ApprovalRequestStatussubjects: Option<Vec<ApprovalSubject>>description: Option<String>

Optional comment about the approval request for the reviewer.

expiry: i64

When this approval request expires.

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Get the TypeId of this object.