Struct google_tagmanager2::UpdateWorkspaceProposalRequest[][src]

pub struct UpdateWorkspaceProposalRequest {
    pub status: Option<String>,
    pub reviewers: Option<Vec<WorkspaceProposalUser>>,
    pub new_comment: Option<WorkspaceProposalHistoryComment>,
    pub fingerprint: Option<String>,
}

Updates a workspace proposal with patch-like semantics.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

If present, the status of the workspace proposal is updated.

If present, the list of reviewers of the workspace proposal is updated.

If present, a new comment is added to the workspace proposal history.

When provided, this fingerprint must match the fingerprint of the proposal in storage.

Trait Implementations

impl Default for UpdateWorkspaceProposalRequest
[src]

Returns the "default value" for a type. Read more

impl Clone for UpdateWorkspaceProposalRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UpdateWorkspaceProposalRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for UpdateWorkspaceProposalRequest
[src]

Auto Trait Implementations