|
| 1 | +# FastCommentsClient::APITenant |
| 2 | + |
| 3 | +## Properties |
| 4 | + |
| 5 | +| Name | Type | Description | Notes | |
| 6 | +| ---- | ---- | ----------- | ----- | |
| 7 | +| **id** | **String** | | | |
| 8 | +| **name** | **String** | | | |
| 9 | +| **email** | **String** | | [optional] | |
| 10 | +| **sign_up_date** | **Float** | | | |
| 11 | +| **package_id** | **String** | | | |
| 12 | +| **payment_frequency** | **Float** | | | |
| 13 | +| **billing_info_valid** | **Boolean** | | | |
| 14 | +| **billing_handled_externally** | **Boolean** | | [optional] | |
| 15 | +| **created_by** | **String** | | | |
| 16 | +| **is_setup** | **Boolean** | | | |
| 17 | +| **domain_configuration** | [**Array<APIDomainConfiguration>**](APIDomainConfiguration.md) | | | |
| 18 | +| **billing_info** | [**BillingInfo**](BillingInfo.md) | | [optional] | |
| 19 | +| **stripe_customer_id** | **String** | | [optional] | |
| 20 | +| **stripe_subscription_id** | **String** | | [optional] | |
| 21 | +| **stripe_plan_id** | **String** | | [optional] | |
| 22 | +| **enable_profanity_filter** | **Boolean** | | | |
| 23 | +| **enable_spam_filter** | **Boolean** | | | |
| 24 | +| **last_billing_issue_reminder_date** | **Time** | | [optional] | |
| 25 | +| **remove_unverified_comments** | **Boolean** | | [optional] | |
| 26 | +| **unverified_comments_tt_lms** | **Float** | | [optional] | |
| 27 | +| **comments_require_approval** | **Boolean** | | [optional] | |
| 28 | +| **auto_approve_comment_on_verification** | **Boolean** | | [optional] | |
| 29 | +| **send_profane_to_spam** | **Boolean** | | [optional] | |
| 30 | +| **has_flex_pricing** | **Boolean** | | [optional] | |
| 31 | +| **has_auditing** | **Boolean** | | [optional] | |
| 32 | +| **flex_last_billed_amount** | **Float** | | [optional] | |
| 33 | +| **de_anon_ip_addr** | **Float** | | [optional] | |
| 34 | +| **meta** | **Hash<String, String>** | Construct a type with a set of properties K of type T | [optional] | |
| 35 | + |
| 36 | +## Example |
| 37 | + |
| 38 | +```ruby |
| 39 | +require 'fastcomments-client' |
| 40 | + |
| 41 | +instance = FastCommentsClient::APITenant.new( |
| 42 | + id: null, |
| 43 | + name: null, |
| 44 | + email: null, |
| 45 | + sign_up_date: null, |
| 46 | + package_id: null, |
| 47 | + payment_frequency: null, |
| 48 | + billing_info_valid: null, |
| 49 | + billing_handled_externally: null, |
| 50 | + created_by: null, |
| 51 | + is_setup: null, |
| 52 | + domain_configuration: null, |
| 53 | + billing_info: null, |
| 54 | + stripe_customer_id: null, |
| 55 | + stripe_subscription_id: null, |
| 56 | + stripe_plan_id: null, |
| 57 | + enable_profanity_filter: null, |
| 58 | + enable_spam_filter: null, |
| 59 | + last_billing_issue_reminder_date: null, |
| 60 | + remove_unverified_comments: null, |
| 61 | + unverified_comments_tt_lms: null, |
| 62 | + comments_require_approval: null, |
| 63 | + auto_approve_comment_on_verification: null, |
| 64 | + send_profane_to_spam: null, |
| 65 | + has_flex_pricing: null, |
| 66 | + has_auditing: null, |
| 67 | + flex_last_billed_amount: null, |
| 68 | + de_anon_ip_addr: null, |
| 69 | + meta: null |
| 70 | +) |
| 71 | +``` |
| 72 | + |
0 commit comments