pub struct IntegrationProviderSchema {
pub id: Option<String>,
pub alt_id: Option<String>,
pub alt_type: Option<String>,
pub title: Option<String>,
pub route: Option<String>,
pub provider: Option<String>,
pub description: Option<String>,
pub image_url: Option<String>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
}payments only.Expand description
IntegrationProviderSchema from the GoHighLevel OpenAPI spec.
Fields§
§id: Option<String>The unique identifier of the integration provider. Required by the API. (Optional here so responses that omit it still parse.)
alt_id: Option<String>The altId / locationId of the integration provider. Required by the API. (Optional here so responses that omit it still parse.)
alt_type: Option<String>The altType of the integration provider. Required by the API. (Optional here so responses that omit it still parse.)
title: Option<String>The title or name of the integration provider. Required by the API. (Optional here so responses that omit it still parse.)
route: Option<String>The route name associated with the integration provider. Required by the API. (Optional here so responses that omit it still parse.)
provider: Option<String>The payment provider associated with the integration provider. Required by the API. (Optional here so responses that omit it still parse.)
description: Option<String>A brief description providing additional information about the integration provider. Required by the API. (Optional here so responses that omit it still parse.)
image_url: Option<String>The URL to an image representing the integration provider. Required by the API. (Optional here so responses that omit it still parse.)
created_at: Option<String>The timestamp when the integration provider was created. Format: date-time (ISO-8601 string). Required by the API. (Optional here so responses that omit it still parse.)
updated_at: Option<String>The timestamp when the integration provider was last updated. Format: date-time (ISO-8601 string). Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for IntegrationProviderSchema
impl Clone for IntegrationProviderSchema
Source§fn clone(&self) -> IntegrationProviderSchema
fn clone(&self) -> IntegrationProviderSchema
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more