Struct gapi_grpc::google::cloud::support::common::CustomerIssue[][src]

pub struct CustomerIssue {
    pub issue_id: String,
    pub state: i32,
    pub create_time: Option<Timestamp>,
    pub resolve_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
}

Reference to a Google internal ticket used for investigating a support case. Not every support case will have an internal ticket associated with it. A support case can have multiple tickets linked to it.

Fields

issue_id: String

Unique identifier for the internal issue. Output only.

state: i32

Represents current status of the internal ticket. Output only.

create_time: Option<Timestamp>

Time when the internal issue was created. Output only.

resolve_time: Option<Timestamp>

Time when the internal issue was marked as resolved. Output only.

update_time: Option<Timestamp>

Time when the internal issue was last updated. Output only.

Implementations

impl CustomerIssue[src]

pub fn state(&self) -> IssueState[src]

Returns the enum value of state, or the default if the field is set to an invalid enum value.

pub fn set_state(&mut self, value: IssueState)[src]

Sets state to the provided enum value.

Trait Implementations

impl Clone for CustomerIssue[src]

impl Debug for CustomerIssue[src]

impl Default for CustomerIssue[src]

impl Message for CustomerIssue[src]

impl PartialEq<CustomerIssue> for CustomerIssue[src]

impl StructuralPartialEq for CustomerIssue[src]

Auto Trait Implementations

impl RefUnwindSafe for CustomerIssue

impl Send for CustomerIssue

impl Sync for CustomerIssue

impl Unpin for CustomerIssue

impl UnwindSafe for CustomerIssue

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]