pub struct SearchRecordsBody {
pub location_id: String,
pub page: f64,
pub page_limit: f64,
pub query: String,
pub search_after: Vec<String>,
}Available on crate feature
objects only.Expand description
SearchRecordsBody from the GoHighLevel OpenAPI spec.
Fields§
§location_id: StringLocation Id Required by the API.
page: f64Page Required by the API.
page_limit: f64Page Limit Required by the API.
query: StringPass this query parameter to search using your searchable properties. For example, if you have a custom object called “Pets” and have configured “name” as a searchable property, you can pass name:Buddy to search for pets with the name “Buddy.” Required by the API.
search_after: Vec<String>Required by the API.
Trait Implementations§
Source§impl Clone for SearchRecordsBody
impl Clone for SearchRecordsBody
Source§fn clone(&self) -> SearchRecordsBody
fn clone(&self) -> SearchRecordsBody
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SearchRecordsBody
impl Debug for SearchRecordsBody
Source§impl Default for SearchRecordsBody
impl Default for SearchRecordsBody
Source§fn default() -> SearchRecordsBody
fn default() -> SearchRecordsBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SearchRecordsBody
impl<'de> Deserialize<'de> for SearchRecordsBody
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SearchRecordsBody
impl RefUnwindSafe for SearchRecordsBody
impl Send for SearchRecordsBody
impl Sync for SearchRecordsBody
impl Unpin for SearchRecordsBody
impl UnsafeUnpin for SearchRecordsBody
impl UnwindSafe for SearchRecordsBody
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more