[][src]Struct approveapi::CreatePromptRequest

pub struct CreatePromptRequest {
    pub body: String,
    pub title: Option<String>,
    pub reject_text: Option<String>,
    pub expires_in: Option<f32>,
    pub long_poll: Option<bool>,
    pub user: String,
    pub approve_text: Option<String>,
    pub metadata: Option<PromptMetadata>,
}

Fields

body: String

The body of the approval request to show the user.

title: Option<String>

The title of an approval request. Defaults to an empty string.

reject_text: Option<String>

The reject action text. Defaults to 'Reject'.

expires_in: Option<f32>

The number of seconds until this request can no longer be answered.

long_poll: Option<bool>

If true, the request waits (long-polls) until the user responds to the prompt or more than 10 minutes pass. Defaults to false.

user: String

The user to send the approval request to. Can be either an email address or a phone number.

approve_text: Option<String>

The approve action text. Defaults to 'Approve'.

metadata: Option<PromptMetadata>

Methods

impl CreatePromptRequest[src]

pub fn new(body: String, user: String) -> CreatePromptRequest[src]

Trait Implementations

impl Debug for CreatePromptRequest[src]

impl<'de> Deserialize<'de> for CreatePromptRequest[src]

impl Serialize for CreatePromptRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]