amazon_spapi/models/services/
service_job_provider.rs

1/*
2 * Selling Partner API for Services
3 *
4 * With the Services API, you can build applications that help service providers get and modify their service orders and manage their resources.
5 *
6 * The version of the OpenAPI document: v1
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14/// ServiceJobProvider : Information about the service job provider.
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct ServiceJobProvider {
17    /// The identifier of the service job provider.
18    #[serde(rename = "serviceJobProviderId", skip_serializing_if = "Option::is_none")]
19    pub service_job_provider_id: Option<String>,
20}
21
22impl ServiceJobProvider {
23    /// Information about the service job provider.
24    pub fn new() -> ServiceJobProvider {
25        ServiceJobProvider {
26            service_job_provider_id: None,
27        }
28    }
29}
30