Skip to main content

appwrite/enums/
mod.rs

1//! Enums for Appwrite SDK
2
3pub mod authenticator_type;
4pub use authenticator_type::AuthenticatorType;
5pub mod authentication_factor;
6pub use authentication_factor::AuthenticationFactor;
7pub mod o_auth_provider;
8pub use o_auth_provider::OAuthProvider;
9pub mod browser;
10pub use browser::Browser;
11pub mod credit_card;
12pub use credit_card::CreditCard;
13pub mod flag;
14pub use flag::Flag;
15pub mod theme;
16pub use theme::Theme;
17pub mod timezone;
18pub use timezone::Timezone;
19pub mod browser_permission;
20pub use browser_permission::BrowserPermission;
21pub mod image_format;
22pub use image_format::ImageFormat;
23pub mod backup_services;
24pub use backup_services::BackupServices;
25pub mod relationship_type;
26pub use relationship_type::RelationshipType;
27pub mod relation_mutate;
28pub use relation_mutate::RelationMutate;
29pub mod databases_index_type;
30pub use databases_index_type::DatabasesIndexType;
31pub mod order_by;
32pub use order_by::OrderBy;
33pub mod runtime;
34pub use runtime::Runtime;
35pub mod scopes;
36pub use scopes::Scopes;
37pub mod template_reference_type;
38pub use template_reference_type::TemplateReferenceType;
39pub mod vcs_reference_type;
40pub use vcs_reference_type::VCSReferenceType;
41pub mod deployment_download_type;
42pub use deployment_download_type::DeploymentDownloadType;
43pub mod execution_method;
44pub use execution_method::ExecutionMethod;
45pub mod name;
46pub use name::Name;
47pub mod message_priority;
48pub use message_priority::MessagePriority;
49pub mod smtp_encryption;
50pub use smtp_encryption::SmtpEncryption;
51pub mod protocol_id;
52pub use protocol_id::ProtocolId;
53pub mod service_id;
54pub use service_id::ServiceId;
55pub mod framework;
56pub use framework::Framework;
57pub mod build_runtime;
58pub use build_runtime::BuildRuntime;
59pub mod adapter;
60pub use adapter::Adapter;
61pub mod compression;
62pub use compression::Compression;
63pub mod image_gravity;
64pub use image_gravity::ImageGravity;
65pub mod tables_db_index_type;
66pub use tables_db_index_type::TablesDBIndexType;
67pub mod password_hash;
68pub use password_hash::PasswordHash;
69pub mod messaging_provider_type;
70pub use messaging_provider_type::MessagingProviderType;
71pub mod database_type;
72pub use database_type::DatabaseType;
73pub mod attribute_status;
74pub use attribute_status::AttributeStatus;
75pub mod column_status;
76pub use column_status::ColumnStatus;
77pub mod index_status;
78pub use index_status::IndexStatus;
79pub mod deployment_status;
80pub use deployment_status::DeploymentStatus;
81pub mod execution_trigger;
82pub use execution_trigger::ExecutionTrigger;
83pub mod execution_status;
84pub use execution_status::ExecutionStatus;
85pub mod platform_type;
86pub use platform_type::PlatformType;
87pub mod health_antivirus_status;
88pub use health_antivirus_status::HealthAntivirusStatus;
89pub mod health_check_status;
90pub use health_check_status::HealthCheckStatus;
91pub mod message_status;
92pub use message_status::MessageStatus;