id
stringlengths
20
153
type
stringclasses
1 value
granularity
stringclasses
14 values
content
stringlengths
16
84.3k
metadata
dict
hyperswitch_struct_hyperswitch_connectors_1302633262960408951
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/payload/requests.rs pub struct BillingAddress { #[serde(rename = "payment_method[billing_address][city]")] pub city: String, #[serde(rename = "payment_method[billing_address][country_code]")] pub country: common_enums::CountryAlpha2, #[serde(rename = "payment_method[billing_address][postal_code]")] pub postal_code: Secret<String>, #[serde(rename = "payment_method[billing_address][state_province]")] pub state_province: Secret<String>, #[serde(rename = "payment_method[billing_address][street_address]")] pub street_address: Secret<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "BillingAddress", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_4884886632300236179
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/payload/requests.rs pub struct PayloadCardsRequestData { pub amount: StringMajorUnit, #[serde(flatten)] pub card: PayloadCard, #[serde(rename = "type")] pub transaction_types: TransactionTypes, // For manual capture, set status to "authorized", otherwise omit #[serde(skip_serializing_if = "Option::is_none")] pub status: Option<responses::PayloadPaymentStatus>, #[serde(rename = "payment_method[type]")] pub payment_method_type: String, // Billing address fields are for AVS validation #[serde(flatten)] pub billing_address: BillingAddress, pub processing_id: Option<Secret<String>>, /// Allows one-time payment by customer without saving their payment method /// This is true by default #[serde(rename = "payment_method[keep_active]")] pub keep_active: bool, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PayloadCardsRequestData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_6383992660718754819
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/payload/requests.rs pub struct PayloadMandateRequestData { pub amount: StringMajorUnit, #[serde(rename = "type")] pub transaction_types: TransactionTypes, // Based on the connectors' response, we can do recurring payment either based on a default payment method id saved in the customer profile or a specific payment method id // Connector by default, saves every payment method pub payment_method_id: Secret<String>, // For manual capture, set status to "authorized", otherwise omit #[serde(skip_serializing_if = "Option::is_none")] pub status: Option<responses::PayloadPaymentStatus>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PayloadMandateRequestData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_3680125845439159696
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/payload/requests.rs pub struct PayloadCard { #[serde(rename = "payment_method[card][card_number]")] pub number: cards::CardNumber, #[serde(rename = "payment_method[card][expiry]")] pub expiry: Secret<String>, #[serde(rename = "payment_method[card][card_code]")] pub cvc: Secret<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PayloadCard", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-6534821240273980207
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/payload/requests.rs pub struct PayloadCancelRequest { pub status: responses::PayloadPaymentStatus, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PayloadCancelRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-2485134669947944052
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/payload/requests.rs pub struct PayloadCaptureRequest { pub status: responses::PayloadPaymentStatus, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PayloadCaptureRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-2302631188856770229
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/payload/requests.rs pub struct PayloadRefundRequest { #[serde(rename = "type")] pub transaction_type: TransactionTypes, pub amount: StringMajorUnit, #[serde(rename = "ledger[0][assoc_transaction_id]")] pub ledger_assoc_transaction_id: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PayloadRefundRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-7674031859334948707
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/wellsfargopayout/transformers.rs pub struct WellsfargopayoutPaymentsRequest { amount: StringMinorUnit, card: WellsfargopayoutCard, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "WellsfargopayoutPaymentsRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_3771672838105206060
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/wellsfargopayout/transformers.rs pub struct WellsfargopayoutCard { number: cards::CardNumber, expiry_month: Secret<String>, expiry_year: Secret<String>, cvc: Secret<String>, complete: bool, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "WellsfargopayoutCard", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-3161387192411204803
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/wellsfargopayout/transformers.rs pub struct WellsfargopayoutPaymentsResponse { status: WellsfargopayoutPaymentStatus, id: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "WellsfargopayoutPaymentsResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-6744179034537441351
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/wellsfargopayout/transformers.rs pub struct WellsfargopayoutRefundRequest { pub amount: StringMinorUnit, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "WellsfargopayoutRefundRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-4662012483449392107
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/wellsfargopayout/transformers.rs pub struct RefundResponse { id: String, status: WellsfargopayoutRefundStatus, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "RefundResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_1054909573236074752
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/wellsfargopayout/transformers.rs pub struct WellsfargopayoutErrorResponse { pub status_code: u16, pub code: String, pub message: String, pub reason: Option<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "WellsfargopayoutErrorResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_3121987837997261481
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/globepay/transformers.rs pub struct GlobepayRouterData<T> { pub amount: MinorUnit, pub router_data: T, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "GlobepayRouterData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_4288806741646840354
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/globepay/transformers.rs pub struct GlobepayPaymentsRequest { price: MinorUnit, description: String, currency: enums::Currency, channel: GlobepayChannel, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "GlobepayPaymentsRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_586768873849629167
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/globepay/transformers.rs pub struct GlobepayConnectorMetadata { image_data_url: url::Url, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "GlobepayConnectorMetadata", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_4577633143657304229
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/globepay/transformers.rs pub struct GlobepayPaymentsResponse { result_code: Option<GlobepayPaymentStatus>, order_id: Option<String>, qrcode_img: Option<url::Url>, return_code: GlobepayReturnCode, //Execution result return_msg: Option<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "GlobepayPaymentsResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-998510252028240000
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/globepay/transformers.rs pub struct GlobepaySyncResponse { pub result_code: Option<GlobepayPaymentPsyncStatus>, pub order_id: Option<String>, pub return_code: GlobepayReturnCode, pub return_msg: Option<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "GlobepaySyncResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-722411562887472823
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/globepay/transformers.rs pub struct GlobepayRefundRequest { pub fee: MinorUnit, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "GlobepayRefundRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-5702949785043016785
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/globepay/transformers.rs pub struct GlobepayRefundResponse { pub result_code: Option<GlobepayRefundStatus>, pub refund_id: Option<String>, pub return_code: GlobepayReturnCode, pub return_msg: Option<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "GlobepayRefundResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_7355745151106161524
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/globepay/transformers.rs pub struct GlobepayErrorResponse { pub return_msg: String, pub return_code: GlobepayReturnCode, pub message: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "GlobepayErrorResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-7437444115053100618
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct ForteRouterData<T> { pub amount: FloatMajorUnit, pub router_data: T, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "ForteRouterData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_6893473084650910548
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct FortePaymentsRequest { action: ForteAction, authorization_amount: FloatMajorUnit, billing_address: BillingAddress, card: Card, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FortePaymentsRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_1302633262960408951
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct BillingAddress { first_name: Secret<String>, last_name: Secret<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "BillingAddress", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-2685950571151159995
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct Card { card_type: ForteCardType, name_on_card: Secret<String>, account_number: CardNumber, expire_month: Secret<String>, expire_year: Secret<String>, card_verification_value: Secret<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "Card", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-1176952045402330408
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct CardResponse { pub name_on_card: Option<Secret<String>>, pub last_4_account_number: String, pub masked_account_number: String, pub card_type: Option<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "CardResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_2778395306727389558
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct ResponseStatus { pub environment: String, pub response_type: String, pub response_code: ForteResponseCode, pub response_desc: String, pub authorization_code: String, pub avs_result: Option<String>, pub cvv_result: Option<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "ResponseStatus", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-5851024464032432178
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct FortePaymentsResponse { pub transaction_id: String, pub location_id: Secret<String>, pub action: ForteAction, pub authorization_amount: Option<FloatMajorUnit>, pub authorization_code: String, pub entered_by: String, pub billing_address: Option<BillingAddress>, pub card: Option<CardResponse>, pub response: ResponseStatus, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FortePaymentsResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_6656226223638564669
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct ForteMeta { pub auth_id: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "ForteMeta", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-1663949181668578028
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct FortePaymentsSyncResponse { pub transaction_id: String, pub organization_id: Secret<String>, pub location_id: Secret<String>, pub original_transaction_id: Option<String>, pub status: FortePaymentStatus, pub action: ForteAction, pub authorization_code: String, pub authorization_amount: Option<FloatMajorUnit>, pub billing_address: Option<BillingAddress>, pub entered_by: String, pub received_date: String, pub origination_date: Option<String>, pub card: Option<CardResponse>, pub attempt_number: i64, pub response: ResponseStatus, pub links: ForteLink, pub biller_name: Option<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FortePaymentsSyncResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-6783006780712530830
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct ForteLink { pub disputes: String, pub settlements: String, #[serde(rename = "self")] pub self_url: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "ForteLink", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_1082628331105705396
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct ForteCaptureRequest { action: String, transaction_id: String, authorization_code: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "ForteCaptureRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_2229063741646397793
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct CaptureResponseStatus { pub environment: String, pub response_type: String, pub response_code: ForteResponseCode, pub response_desc: String, pub authorization_code: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "CaptureResponseStatus", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_6762463082404976599
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct ForteCaptureResponse { pub transaction_id: String, pub original_transaction_id: String, pub entered_by: String, pub authorization_code: String, pub response: CaptureResponseStatus, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "ForteCaptureResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-6862319464393720530
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct ForteCancelRequest { action: String, authorization_code: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "ForteCancelRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-2915530173518700731
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct CancelResponseStatus { pub response_type: String, pub response_code: ForteResponseCode, pub response_desc: String, pub authorization_code: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "CancelResponseStatus", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-9103392591725919488
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct ForteCancelResponse { pub transaction_id: String, pub location_id: Secret<String>, pub action: String, pub authorization_code: String, pub entered_by: String, pub response: CancelResponseStatus, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "ForteCancelResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_3101913876786688529
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct ForteRefundRequest { action: String, authorization_amount: FloatMajorUnit, original_transaction_id: String, authorization_code: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "ForteRefundRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-4662012483449392107
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct RefundResponse { pub transaction_id: String, pub original_transaction_id: String, pub action: String, pub authorization_amount: Option<FloatMajorUnit>, pub authorization_code: String, pub response: ResponseStatus, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "RefundResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_7309758592179393448
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct RefundSyncResponse { status: RefundStatus, transaction_id: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "RefundSyncResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_5150095009667439659
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct ErrorResponseStatus { pub environment: String, pub response_type: Option<String>, pub response_code: Option<String>, pub response_desc: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "ErrorResponseStatus", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-1178497394721462621
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/forte/transformers.rs pub struct ForteErrorResponse { pub response: ErrorResponseStatus, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "ForteErrorResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_8926920866301352442
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuMandateRequest { #[serde(rename = "0")] mandate_request: Secret<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuMandateRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-1254064768816265960
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuRecurringRequest { record_type: FiuuRecordType, merchant_id: Secret<String>, token: Secret<String>, order_id: String, currency: Currency, amount: StringMajorUnit, billing_name: Secret<String>, email: Email, verify_key: Secret<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuRecurringRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-7399899194488455886
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuPaymentRequest { #[serde(rename = "MerchantID")] merchant_id: Secret<String>, reference_no: String, txn_type: TxnType, txn_currency: Currency, txn_amount: StringMajorUnit, signature: Secret<String>, #[serde(rename = "ReturnURL")] return_url: Option<String>, #[serde(rename = "NotificationURL")] notification_url: Option<Url>, #[serde(flatten)] payment_method_data: FiuuPaymentMethodData, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuPaymentRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_9201321189470770057
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuFPXData { #[serde(rename = "non_3DS")] non_3ds: i32, txn_channel: FPXTxnChannel, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuFPXData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_8812328840021504985
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuQRData { txn_channel: TxnChannel, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuQRData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_996168527258836598
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuCardData { #[serde(rename = "non_3DS")] non_3ds: i32, #[serde(rename = "TxnChannel")] txn_channel: TxnChannel, cc_pan: CardNumber, cc_cvv2: Secret<String>, cc_month: Secret<String>, cc_year: Secret<String>, #[serde(rename = "mpstokenstatus")] mps_token_status: Option<i32>, #[serde(rename = "CustEmail")] customer_email: Option<Email>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuCardData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-4778338753618252384
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuCardWithNTI { #[serde(rename = "TxnChannel")] txn_channel: TxnChannel, cc_pan: CardNumber, cc_month: Secret<String>, cc_year: Secret<String>, #[serde(rename = "OriginalSchemeID")] original_scheme_id: Secret<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuCardWithNTI", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-2276832937524364453
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuApplePayData { #[serde(rename = "TxnChannel")] txn_channel: TxnChannel, cc_month: Secret<String>, cc_year: Secret<String>, cc_token: CardNumber, eci: Option<String>, token_cryptogram: Secret<String>, token_type: FiuuTokenType, #[serde(rename = "non_3DS")] non_3ds: i32, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuApplePayData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_5352031006086044744
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuGooglePayData { txn_channel: TxnChannel, #[serde(rename = "GooglePay[apiVersion]")] api_version: u8, #[serde(rename = "GooglePay[apiVersionMinor]")] api_version_minor: u8, #[serde(rename = "GooglePay[paymentMethodData][info][assuranceDetails][accountVerified]")] account_verified: Option<bool>, #[serde( rename = "GooglePay[paymentMethodData][info][assuranceDetails][cardHolderAuthenticated]" )] card_holder_authenticated: Option<bool>, #[serde(rename = "GooglePay[paymentMethodData][info][cardDetails]")] card_details: String, #[serde(rename = "GooglePay[paymentMethodData][info][cardNetwork]")] card_network: String, #[serde(rename = "GooglePay[paymentMethodData][tokenizationData][token]")] token: Secret<String>, #[serde(rename = "GooglePay[paymentMethodData][tokenizationData][type]")] tokenization_data_type: Secret<String>, #[serde(rename = "GooglePay[paymentMethodData][type]")] pm_type: String, #[serde(rename = "SCREAMING_SNAKE_CASE")] token_type: FiuuTokenType, #[serde(rename = "non_3DS")] non_3ds: i32, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuGooglePayData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_6260182417145264066
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct PaymentsResponse { pub reference_no: String, #[serde(rename = "TxnID")] pub txn_id: String, pub txn_type: TxnType, pub txn_currency: Currency, pub txn_amount: StringMajorUnit, pub txn_channel: String, pub txn_data: TxnData, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PaymentsResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-8855154938188589057
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct DuitNowQrCodeResponse { pub reference_no: String, pub txn_type: TxnType, pub txn_currency: Currency, pub txn_amount: StringMajorUnit, pub txn_channel: String, #[serde(rename = "TxnID")] pub txn_id: String, pub txn_data: QrTxnData, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "DuitNowQrCodeResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_705927211392372807
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct QrTxnData { pub request_data: QrRequestData, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "QrTxnData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-3353693388549317663
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct QrRequestData { pub qr_data: Secret<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "QrRequestData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-2903689160569895260
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuRecurringResponse { status: FiuuRecurringStautus, #[serde(rename = "orderid")] order_id: String, #[serde(rename = "tranID")] tran_id: Option<String>, reason: Option<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuRecurringResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-2637054656438343382
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct TxnData { #[serde(rename = "RequestURL")] pub request_url: String, pub request_type: RequestType, pub request_data: RequestData, pub request_method: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "TxnData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_7611600966777495859
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct QrCodeData { #[serde(rename = "tranID")] pub tran_id: String, pub status: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "QrCodeData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_5079522428114689524
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct NonThreeDSResponseData { #[serde(rename = "tranID")] pub tran_id: String, pub status: String, #[serde(rename = "extraP")] pub extra_parameters: Option<ExtraParameters>, pub error_code: Option<String>, pub error_desc: Option<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "NonThreeDSResponseData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_552651207630641851
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct ExtraParameters { pub token: Option<Secret<String>>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "ExtraParameters", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-8721514632421940351
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuRefundRequest { pub refund_type: RefundType, #[serde(rename = "MerchantID")] pub merchant_id: Secret<String>, #[serde(rename = "RefID")] pub ref_id: String, #[serde(rename = "TxnID")] pub txn_id: String, pub amount: StringMajorUnit, pub signature: Secret<String>, #[serde(rename = "notify_url")] pub notify_url: Option<Url>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuRefundRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_5190380145981061451
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuRefundSuccessResponse { #[serde(rename = "RefundID")] refund_id: i64, status: String, #[serde(rename = "reason")] reason: Option<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuRefundSuccessResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_2309369830186000330
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuErrorResponse { pub error_code: String, pub error_desc: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuErrorResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_3422268462958759359
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuPaymentSyncRequest { amount: StringMajorUnit, #[serde(rename = "txID")] tx_id: String, domain: String, skey: Secret<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuPaymentSyncRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_5538410100157320566
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuPaymentSyncResponse { stat_code: StatCode, stat_name: StatName, #[serde(rename = "TranID")] tran_id: String, error_code: Option<String>, error_desc: Option<String>, #[serde(rename = "miscellaneous")] miscellaneous: Option<HashMap<String, Secret<String>>>, #[serde(rename = "SchemeTransactionID")] scheme_transaction_id: Option<Secret<String>>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuPaymentSyncResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_2290924977950271759
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct PaymentCaptureRequest { domain: String, #[serde(rename = "tranID")] tran_id: String, amount: StringMajorUnit, #[serde(rename = "RefID")] ref_id: String, skey: Secret<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PaymentCaptureRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_5247190478775515610
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct PaymentCaptureResponse { #[serde(rename = "TranID")] tran_id: String, stat_code: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PaymentCaptureResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_5547954425417494895
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuPaymentCancelRequest { #[serde(rename = "txnID")] txn_id: String, domain: String, skey: Secret<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuPaymentCancelRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_1749450481347015326
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuPaymentCancelResponse { #[serde(rename = "TranID")] tran_id: String, stat_code: String, #[serde(rename = "miscellaneous")] miscellaneous: Option<HashMap<String, Secret<String>>>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuPaymentCancelResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-3588674738667559608
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuRefundSyncRequest { #[serde(rename = "TxnID")] txn_id: String, #[serde(rename = "MerchantID")] merchant_id: Secret<String>, signature: Secret<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuRefundSyncRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-7021582292460501239
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct RefundData { #[serde(rename = "RefundID")] refund_id: String, status: RefundStatus, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "RefundData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-8373133564263384890
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuWebhooksPaymentResponse { pub skey: Secret<String>, pub status: FiuuPaymentWebhookStatus, #[serde(rename = "orderid")] pub order_id: String, #[serde(rename = "tranID")] pub tran_id: String, pub nbcb: String, pub amount: StringMajorUnit, pub currency: String, pub domain: Secret<String>, pub appcode: Option<Secret<String>>, pub paydate: String, pub channel: String, pub error_desc: Option<String>, pub error_code: Option<String>, #[serde(rename = "extraP")] pub extra_parameters: Option<Secret<String>>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuWebhooksPaymentResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_1895351016767156733
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuPaymentRedirectResponse { pub skey: Secret<String>, #[serde(rename = "tranID")] pub tran_id: String, pub status: FiuuPaymentWebhookStatus, pub appcode: Option<String>, pub error_code: Option<String>, pub error_desc: Option<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuPaymentRedirectResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-4804232927338318367
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuWebhooksRefundResponse { pub refund_type: FiuuWebhooksRefundType, #[serde(rename = "MerchantID")] pub merchant_id: Secret<String>, #[serde(rename = "RefID")] pub ref_id: String, #[serde(rename = "RefundID")] pub refund_id: String, #[serde(rename = "TxnID")] pub txn_id: String, pub amount: StringMajorUnit, pub status: FiuuRefundsWebhookStatus, pub signature: Secret<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuWebhooksRefundResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-2590491570801406700
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuWebhookSignature { pub skey: Secret<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuWebhookSignature", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-5806932224732668552
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuuWebhookResourceId { pub skey: Secret<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuuWebhookResourceId", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_1487945037246733730
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/fiuu/transformers.rs pub struct FiuWebhookEvent { pub status: FiuuPaymentWebhookStatus, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "FiuWebhookEvent", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_3907468024693363328
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct PeachpaymentsPaymentsCardRequest { pub charge_method: String, pub reference_id: String, pub ecommerce_card_payment_only_transaction_data: EcommercePaymentOnlyTransactionData, #[serde(skip_serializing_if = "Option::is_none")] pub pos_data: Option<serde_json::Value>, pub send_date_time: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PeachpaymentsPaymentsCardRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-9120026018743242526
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct PeachpaymentsPaymentsNTRequest { pub payment_method: String, pub reference_id: String, pub ecommerce_card_payment_only_transaction_data: EcommercePaymentOnlyTransactionData, pub send_date_time: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PeachpaymentsPaymentsNTRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_263508158526874157
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct CardOnFileData { #[serde(rename = "type")] pub _type: String, pub source: String, pub mode: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "CardOnFileData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_8805086293097047961
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct EcommerceCardPaymentOnlyTransactionData { pub merchant_information: MerchantInformation, pub routing: Routing, pub card: CardDetails, pub amount: AmountDetails, pub rrn: Option<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "EcommerceCardPaymentOnlyTransactionData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-4427650705365948526
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct EcommerceNetworkTokenPaymentOnlyTransactionData { pub merchant_information: MerchantInformation, pub routing: Routing, pub network_token_data: NetworkTokenDetails, pub amount: AmountDetails, pub cof_data: CardOnFileData, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "EcommerceNetworkTokenPaymentOnlyTransactionData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_8384272866828317100
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct MerchantInformation { pub client_merchant_reference_id: Secret<String>, pub name: Secret<String>, pub mcc: Secret<String>, #[serde(skip_serializing_if = "Option::is_none")] pub phone: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub email: Option<pii::Email>, #[serde(skip_serializing_if = "Option::is_none")] pub mobile: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub address: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub city: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub postal_code: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub region_code: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub merchant_type: Option<MerchantType>, #[serde(skip_serializing_if = "Option::is_none")] pub website_url: Option<url::Url>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "MerchantInformation", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_3648980460974481970
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct Routing { pub route: Route, pub mid: Secret<String>, pub tid: Secret<String>, #[serde(skip_serializing_if = "Option::is_none")] pub visa_payment_facilitator_id: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub master_card_payment_facilitator_id: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub sub_mid: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub amex_id: Option<Secret<String>>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "Routing", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-4523008056189052339
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct CardDetails { pub pan: CardNumber, #[serde(skip_serializing_if = "Option::is_none")] pub cardholder_name: Option<Secret<String>>, pub expiry_year: Secret<String>, pub expiry_month: Secret<String>, #[serde(skip_serializing_if = "Option::is_none")] pub cvv: Option<Secret<String>>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "CardDetails", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-3733272817413479443
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct NetworkTokenDetails { pub token: NetworkTokenNumber, pub expiry_year: Secret<String>, pub expiry_month: Secret<String>, pub cryptogram: Option<Secret<String>>, pub eci: Option<String>, pub scheme: Option<CardNetworkLowercase>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "NetworkTokenDetails", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_5100157029967535756
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct AmountDetails { pub amount: MinorUnit, pub currency_code: String, #[serde(skip_serializing_if = "Option::is_none")] pub display_amount: Option<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "AmountDetails", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_186432647652077651
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct PeachpaymentsConfirmRequest { pub ecommerce_card_payment_only_confirmation_data: EcommerceCardPaymentOnlyConfirmationData, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PeachpaymentsConfirmRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-2641468352032956055
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct PeachpaymentsRefundRequest { pub reference_id: String, pub ecommerce_card_payment_only_transaction_data: PeachpaymentsRefundTransactionData, #[serde(skip_serializing_if = "Option::is_none")] pub pos_data: Option<PosData>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PeachpaymentsRefundRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_5190136973195964732
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct PosData { pub referral: String, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PosData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-1252312165117488596
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct PeachpaymentsRefundTransactionData { pub amount: AmountDetails, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PeachpaymentsRefundTransactionData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-7033434471019649806
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct EcommerceCardPaymentOnlyConfirmationData { pub amount: AmountDetails, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "EcommerceCardPaymentOnlyConfirmationData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-6828844136252697023
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct PeachpaymentsVoidRequest { pub payment_method: PaymentMethod, pub send_date_time: String, pub failure_reason: FailureReason, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PeachpaymentsVoidRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-6461860754033466288
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct PeachPaymentsConnectorMetadataObject { pub client_merchant_reference_id: Secret<String>, pub name: Secret<String>, pub mcc: Secret<String>, #[serde(skip_serializing_if = "Option::is_none")] pub phone: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub email: Option<pii::Email>, #[serde(skip_serializing_if = "Option::is_none")] pub mobile: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub address: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub city: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub postal_code: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub region_code: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub merchant_type: Option<MerchantType>, #[serde(skip_serializing_if = "Option::is_none")] pub website_url: Option<url::Url>, pub route: Route, pub mid: Secret<String>, pub tid: Secret<String>, #[serde(skip_serializing_if = "Option::is_none")] pub visa_payment_facilitator_id: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub master_card_payment_facilitator_id: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub sub_mid: Option<Secret<String>>, #[serde(skip_serializing_if = "Option::is_none")] pub amex_id: Option<Secret<String>>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PeachPaymentsConnectorMetadataObject", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_2101128950499489585
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct PeachpaymentsPaymentsData { pub transaction_id: String, pub response_code: Option<ResponseCode>, pub transaction_result: PeachpaymentsPaymentStatus, pub ecommerce_card_payment_only_transaction_data: Option<EcommerceCardPaymentOnlyResponseData>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PeachpaymentsPaymentsData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_1263231342973877532
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct PeachpaymentsRsyncResponse { pub transaction_id: String, pub transaction_result: PeachpaymentsRefundStatus, pub response_code: Option<ResponseCode>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PeachpaymentsRsyncResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_8995479220459972153
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct PeachpaymentsRefundResponse { pub transaction_id: String, pub original_transaction_id: Option<String>, pub reference_id: String, pub transaction_result: PeachpaymentsRefundStatus, pub response_code: Option<ResponseCode>, pub refund_balance_data: Option<RefundBalanceData>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PeachpaymentsRefundResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_5518480904622617780
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct RefundBalanceData { pub amount: AmountDetails, pub balance: AmountDetails, pub refund_history: Vec<RefundHistory>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "RefundBalanceData", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_-3198403665394555250
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct RefundHistory { pub transaction_id: String, pub reference_id: String, pub amount: AmountDetails, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "RefundHistory", "total_crates": null, "trait_name": null }
hyperswitch_struct_hyperswitch_connectors_848331946401977935
clm
struct
// hyperswitch/crates/hyperswitch_connectors/src/connectors/peachpayments/transformers.rs pub struct PeachpaymentsConfirmResponse { pub transaction_id: String, pub response_code: Option<ResponseCode>, pub transaction_result: PeachpaymentsPaymentStatus, pub authorization_code: Option<String>, }
{ "chunk": null, "crate": "hyperswitch_connectors", "enum_name": null, "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": "PeachpaymentsConfirmResponse", "total_crates": null, "trait_name": null }