/*
* Geo Engine API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.9.0
* Contact: dev@geoengine.de
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ProviderLayerCollectionId {
#[serde(rename = "collectionId")]
pub collection_id: String,
#[serde(rename = "providerId")]
pub provider_id: uuid::Uuid,
}
impl ProviderLayerCollectionId {
pub fn new(collection_id: String, provider_id: uuid::Uuid) -> ProviderLayerCollectionId {
ProviderLayerCollectionId {
collection_id,
provider_id,
}
}
}