swf_core/models/catalog.rs
1use crate::models::resource::*;
2use serde::{Deserialize, Serialize};
3
4/// Represents the definition of a workflow component catalog
5#[derive(Debug, Default, Clone, PartialEq, Eq, Serialize, Deserialize)]
6pub struct CatalogDefinition {
7 /// Gets/sets the endpoint that defines the root URL at which the catalog is located
8 pub endpoint: OneOfEndpointDefinitionOrUri,
9}