pub struct NormalizedProjectRevisionHook {
Show 16 fields pub config_key: String, pub created_at: Option<String>, pub hook: String, pub id: Option<String>, pub project_revision_id: Option<String>, pub updated_at: Option<String>, pub web_hook_config_auth_api_key_in: Option<String>, pub web_hook_config_auth_api_key_name: Option<String>, pub web_hook_config_auth_api_key_value: Option<String>, pub web_hook_config_auth_basic_auth_password: Option<String>, pub web_hook_config_auth_basic_auth_user: Option<String>, pub web_hook_config_auth_type: Option<String>, pub web_hook_config_body: Option<String>, pub web_hook_config_method: Option<String>, pub web_hook_config_response_ignore: Option<bool>, pub web_hook_config_url: Option<String>,
}

Fields

config_key: String

The Hooks Config Key

created_at: Option<String>

The Project’s Revision Creation Date

hook: String

The Hook Type

id: Option<String>project_revision_id: Option<String>updated_at: Option<String>

Last Time Project’s Revision was Updated

web_hook_config_auth_api_key_in: Option<String>

Whether to send the API Key in the HTTP Header or as a HTTP Cookie

web_hook_config_auth_api_key_name: Option<String>

The name of the api key

web_hook_config_auth_api_key_value: Option<String>

The value of the api key

web_hook_config_auth_basic_auth_password: Option<String>

The password to be sent in the HTTP Basic Auth Header

web_hook_config_auth_basic_auth_user: Option<String>

The username to be sent in the HTTP Basic Auth Header

web_hook_config_auth_type: Option<String>

HTTP Auth Method to use for the Web-Hook

web_hook_config_body: Option<String>

URI pointing to the JsonNet template used for Web-Hook payload generation. Only used for those HTTP methods, which support HTTP body payloads.

web_hook_config_method: Option<String>

The HTTP method to use (GET, POST, etc) for the Web-Hook

web_hook_config_response_ignore: Option<bool>

Whether to ignore the Web Hook response

web_hook_config_url: Option<String>

The URL the Web-Hook should call

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more