brevo/models/
_companies_id_patch_request.rs

1/*
2 * Brevo API
3 *
4 * Brevo provide a RESTFul API that can be used with any languages. With this API, you will be able to :   - Manage your campaigns and get the statistics   - Manage your contacts   - Send transactional Emails and SMS   - and much more...  You can download our wrappers at https://github.com/orgs/brevo  **Possible responses**   | Code | Message |   | :-------------: | ------------- |   | 200  | OK. Successful Request  |   | 201  | OK. Successful Creation |   | 202  | OK. Request accepted |   | 204  | OK. Successful Update/Deletion  |   | 400  | Error. Bad Request  |   | 401  | Error. Authentication Needed  |   | 402  | Error. Not enough credit, plan upgrade needed  |   | 403  | Error. Permission denied  |   | 404  | Error. Object does not exist |   | 405  | Error. Method not allowed  |   | 406  | Error. Not Acceptable  |   | 422  | Error. Unprocessable Entity |
5 *
6 * The version of the OpenAPI document: 3.0.0
7 * Contact: contact@brevo.com
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct CompaniesIdPatchRequest {
16    /// Name of company
17    #[serde(rename = "name", skip_serializing_if = "Option::is_none")]
18    pub name: Option<String>,
19    /// Attributes for company update
20    #[serde(rename = "attributes", skip_serializing_if = "Option::is_none")]
21    pub attributes: Option<serde_json::Value>,
22    /// Country code if phone_number is passed in attributes.
23    #[serde(rename = "countryCode", skip_serializing_if = "Option::is_none")]
24    pub country_code: Option<i64>,
25    /// Warning - Using PATCH on linkedContactIds replaces the list of linked contacts. Omitted IDs will be removed.
26    #[serde(rename = "linkedContactsIds", skip_serializing_if = "Option::is_none")]
27    pub linked_contacts_ids: Option<Vec<i64>>,
28    /// Warning - Using PATCH on linkedDealsIds replaces the list of linked contacts. Omitted IDs will be removed.
29    #[serde(rename = "linkedDealsIds", skip_serializing_if = "Option::is_none")]
30    pub linked_deals_ids: Option<Vec<String>>,
31}
32
33impl CompaniesIdPatchRequest {
34    pub fn new() -> CompaniesIdPatchRequest {
35        CompaniesIdPatchRequest {
36            name: None,
37            attributes: None,
38            country_code: None,
39            linked_contacts_ids: None,
40            linked_deals_ids: None,
41        }
42    }
43}