Struct gapi_grpc::google::cloud::contactcenterinsights::v1::CreateConversationRequest[][src]

pub struct CreateConversationRequest {
    pub parent: String,
    pub conversation: Option<Conversation>,
    pub conversation_id: String,
}

Request to create a conversation.

Fields

parent: String

Required. The parent resource of the conversation.

conversation: Option<Conversation>

Required. The conversation resource to create.

conversation_id: String

A unique ID for the new conversation. This ID will become the final component of the conversation’s resource name. If no ID is specified, a server-generated ID will be used.

This value should be 4-32 characters and must match the regular expression /^[a-z0-9-]{4,32}$/. Valid characters are /[a-z][0-9]-/

Trait Implementations

impl Clone for CreateConversationRequest[src]

impl Debug for CreateConversationRequest[src]

impl Default for CreateConversationRequest[src]

impl Message for CreateConversationRequest[src]

impl PartialEq<CreateConversationRequest> for CreateConversationRequest[src]

impl StructuralPartialEq for CreateConversationRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for CreateConversationRequest

impl Send for CreateConversationRequest

impl Sync for CreateConversationRequest

impl Unpin for CreateConversationRequest

impl UnwindSafe for CreateConversationRequest

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]