pub struct DeleteHeaderRequest {
pub header_id: Option<String>,
pub tab_id: Option<String>,
}Expand description
Deletes a Header from the document.
This type is not used in any activity, and only used as part of another schema.
Fields§
§header_id: Option<String>The id of the header to delete. If this header is defined on DocumentStyle, the reference to this header is removed, resulting in no header of that type for the first section of the document. If this header is defined on a SectionStyle, the reference to this header is removed and the header of that type is now continued from the previous section.
tab_id: Option<String>The tab containing the header to delete. When omitted, the request is applied to the first tab. In a document containing a single tab: - If provided, must match the singular tab’s ID. - If omitted, the request applies to the singular tab. In a document containing multiple tabs: - If provided, the request applies to the specified tab. - If omitted, the request applies to the first tab in the document.
Trait Implementations§
Source§impl Clone for DeleteHeaderRequest
impl Clone for DeleteHeaderRequest
Source§fn clone(&self) -> DeleteHeaderRequest
fn clone(&self) -> DeleteHeaderRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more