mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-28 04:04:55 +08:00
feat: create additional columns in organization table (#5380)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
use common_utils::id_type;
|
||||
use common_utils::{id_type, pii};
|
||||
use utoipa::ToSchema;
|
||||
pub struct OrganizationNew {
|
||||
pub org_id: id_type::OrganizationId,
|
||||
@ -22,6 +22,10 @@ pub struct OrganizationId {
|
||||
#[derive(Debug, serde::Serialize, serde::Deserialize, Clone, ToSchema)]
|
||||
pub struct OrganizationRequest {
|
||||
pub organization_name: Option<String>,
|
||||
#[schema(value_type = Option<Object>)]
|
||||
pub organization_details: Option<pii::SecretSerdeValue>,
|
||||
#[schema(value_type = Option<Object>)]
|
||||
pub metadata: Option<pii::SecretSerdeValue>,
|
||||
}
|
||||
|
||||
#[derive(Debug, serde::Serialize, Clone, ToSchema)]
|
||||
@ -29,4 +33,10 @@ pub struct OrganizationResponse {
|
||||
#[schema(value_type = String, max_length = 64, min_length = 1, example = "org_q98uSGAYbjEwqs0mJwnz")]
|
||||
pub organization_id: id_type::OrganizationId,
|
||||
pub organization_name: Option<String>,
|
||||
#[schema(value_type = Option<Object>)]
|
||||
pub organization_details: Option<pii::SecretSerdeValue>,
|
||||
#[schema(value_type = Option<Object>)]
|
||||
pub metadata: Option<pii::SecretSerdeValue>,
|
||||
pub modified_at: time::PrimitiveDateTime,
|
||||
pub created_at: time::PrimitiveDateTime,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user