Class: Sentdm::Models::ProfileCreateParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Sentdm::Models::ProfileCreateParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/sentdm/models/profile_create_params.rb
Overview
Instance Attribute Summary collapse
-
#allow_contact_sharing ⇒ Boolean?
Whether contacts are shared across profiles (default: false).
-
#allow_template_sharing ⇒ Boolean?
Whether templates are shared across profiles (default: false).
-
#billing_model ⇒ String?
Billing model: profile, organization, or profile_and_organization (default: profile).
-
#description ⇒ String?
Profile description (optional).
-
#icon ⇒ String?
Profile icon URL (optional).
- #idempotency_key ⇒ String?
-
#inherit_contacts ⇒ Boolean?
Whether this profile inherits contacts from organization (default: true).
-
#inherit_tcr_brand ⇒ Boolean?
Whether this profile inherits TCR brand from organization (default: true).
-
#inherit_tcr_campaign ⇒ Boolean?
Whether this profile inherits TCR campaign from organization (default: true).
-
#inherit_templates ⇒ Boolean?
Whether this profile inherits templates from organization (default: true).
-
#name ⇒ String?
Profile name (required).
-
#short_name ⇒ String?
Profile short name/abbreviation (optional).
-
#test_mode ⇒ Boolean?
Test mode flag - when true, the operation is simulated without side effects Useful for testing integrations without actual execution.
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
-
#initialize(allow_contact_sharing: nil, allow_template_sharing: nil, billing_model: nil, description: nil, icon: nil, inherit_contacts: nil, inherit_tcr_brand: nil, inherit_tcr_campaign: nil, inherit_templates: nil, name: nil, short_name: nil, test_mode: nil, idempotency_key: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see ProfileCreateParams for more details.
Methods included from Internal::Type::RequestParameters::Converter
Methods included from Internal::Type::RequestParameters
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(allow_contact_sharing: nil, allow_template_sharing: nil, billing_model: nil, description: nil, icon: nil, inherit_contacts: nil, inherit_tcr_brand: nil, inherit_tcr_campaign: nil, inherit_templates: nil, name: nil, short_name: nil, test_mode: nil, idempotency_key: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Sentdm::Models::ProfileCreateParams for more details.
|
|
# File 'lib/sentdm/models/profile_create_params.rb', line 89
|
Instance Attribute Details
#allow_contact_sharing ⇒ Boolean?
Whether contacts are shared across profiles (default: false)
14 |
# File 'lib/sentdm/models/profile_create_params.rb', line 14 optional :allow_contact_sharing, Sentdm::Internal::Type::Boolean |
#allow_template_sharing ⇒ Boolean?
Whether templates are shared across profiles (default: false)
20 |
# File 'lib/sentdm/models/profile_create_params.rb', line 20 optional :allow_template_sharing, Sentdm::Internal::Type::Boolean |
#billing_model ⇒ String?
Billing model: profile, organization, or profile_and_organization (default: profile)
27 |
# File 'lib/sentdm/models/profile_create_params.rb', line 27 optional :billing_model, String, nil?: true |
#description ⇒ String?
Profile description (optional)
33 |
# File 'lib/sentdm/models/profile_create_params.rb', line 33 optional :description, String, nil?: true |
#icon ⇒ String?
Profile icon URL (optional)
39 |
# File 'lib/sentdm/models/profile_create_params.rb', line 39 optional :icon, String, nil?: true |
#idempotency_key ⇒ String?
87 |
# File 'lib/sentdm/models/profile_create_params.rb', line 87 optional :idempotency_key, String |
#inherit_contacts ⇒ Boolean?
Whether this profile inherits contacts from organization (default: true)
45 |
# File 'lib/sentdm/models/profile_create_params.rb', line 45 optional :inherit_contacts, Sentdm::Internal::Type::Boolean, nil?: true |
#inherit_tcr_brand ⇒ Boolean?
Whether this profile inherits TCR brand from organization (default: true)
51 |
# File 'lib/sentdm/models/profile_create_params.rb', line 51 optional :inherit_tcr_brand, Sentdm::Internal::Type::Boolean, nil?: true |
#inherit_tcr_campaign ⇒ Boolean?
Whether this profile inherits TCR campaign from organization (default: true)
57 |
# File 'lib/sentdm/models/profile_create_params.rb', line 57 optional :inherit_tcr_campaign, Sentdm::Internal::Type::Boolean, nil?: true |
#inherit_templates ⇒ Boolean?
Whether this profile inherits templates from organization (default: true)
63 |
# File 'lib/sentdm/models/profile_create_params.rb', line 63 optional :inherit_templates, Sentdm::Internal::Type::Boolean, nil?: true |
#name ⇒ String?
Profile name (required)
69 |
# File 'lib/sentdm/models/profile_create_params.rb', line 69 optional :name, String |
#short_name ⇒ String?
Profile short name/abbreviation (optional)
75 |
# File 'lib/sentdm/models/profile_create_params.rb', line 75 optional :short_name, String, nil?: true |