Struct google_tagmanager2::WorkspaceProposalHistory[][src]

pub struct WorkspaceProposalHistory {
    pub comment: Option<WorkspaceProposalHistoryComment>,
    pub created_timestamp: Option<Timestamp>,
    pub type_: Option<String>,
    pub created_by: Option<WorkspaceProposalUser>,
    pub status_change: Option<WorkspaceProposalHistoryStatusChange>,
}

A history event that represents a comment or status change in the proposal.

This type is not used in any activity, and only used as part of another schema.

Fields

A user or reviewer comment.

When this history event was added to the workspace proposal.

The history type distinguishing between comments and status changes.

The party responsible for the change in history.

A change in the proposal's status.

Trait Implementations

impl Default for WorkspaceProposalHistory
[src]

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

impl Clone for WorkspaceProposalHistory
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for WorkspaceProposalHistory
[src]

Formats the value using the given formatter. Read more

impl Part for WorkspaceProposalHistory
[src]

Auto Trait Implementations