Struct google_tagmanager2::SyncWorkspaceResponse[][src]

pub struct SyncWorkspaceResponse {
    pub sync_status: Option<SyncStatus>,
    pub merge_conflict: Option<Vec<MergeConflict>>,
}

A response after synchronizing the workspace to the latest container version.

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

Indicates whether synchronization caused a merge conflict or sync error.

The merge conflict after sync. If this field is not empty, the sync is still treated as successful. But a version cannot be created until all conflicts are resolved.

Trait Implementations

impl Default for SyncWorkspaceResponse
[src]

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

impl Clone for SyncWorkspaceResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SyncWorkspaceResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for SyncWorkspaceResponse
[src]

Auto Trait Implementations