pub struct UpdateApexRedirectParams {
pub apex_redirect_id: String,
pub service_id: Option<String>,
pub version: Option<i32>,
pub created_at: Option<String>,
pub deleted_at: Option<String>,
pub updated_at: Option<String>,
pub status_code: Option<i32>,
pub domains: Option<Vec<String>>,
pub feature_revision: Option<i32>,
}
Expand description
struct for passing parameters to the method update_apex_redirect
Fields§
§apex_redirect_id: String
§service_id: Option<String>
§version: Option<i32>
§created_at: Option<String>
Date and time in ISO 8601 format.
deleted_at: Option<String>
Date and time in ISO 8601 format.
updated_at: Option<String>
Date and time in ISO 8601 format.
status_code: Option<i32>
HTTP status code used to redirect the client.
domains: Option<Vec<String>>
Array of apex domains that should redirect to their WWW subdomain.
feature_revision: Option<i32>
Revision number of the apex redirect feature implementation. Defaults to the most recent revision.
Trait Implementations§
source§impl Clone for UpdateApexRedirectParams
impl Clone for UpdateApexRedirectParams
source§fn clone(&self) -> UpdateApexRedirectParams
fn clone(&self) -> UpdateApexRedirectParams
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UpdateApexRedirectParams
impl Debug for UpdateApexRedirectParams
source§impl Default for UpdateApexRedirectParams
impl Default for UpdateApexRedirectParams
source§fn default() -> UpdateApexRedirectParams
fn default() -> UpdateApexRedirectParams
Returns the “default value” for a type. Read more