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, #[ser...
{ "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_...
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 "aut...
{ "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_...
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 defa...
{ "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_...
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_meth...
{ "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_...
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_...
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_...
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: Stri...
{ "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_...
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_...
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_...
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_...
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_...
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_...
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_...
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_...
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_...
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_...
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<Strin...
{ "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_...
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_...
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_...
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_...
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_...
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_...
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_...
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_...
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_...
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_...
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>, ...
{ "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_...
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 entere...
{ "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_...
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_...
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, ...
{ "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_...
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_...
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_...
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_...
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_...
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_...
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_...
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_...
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_...
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: Resp...
{ "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_...
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_...
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_...
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_...
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_...
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>, ...
{ "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_...
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<Strin...
{ "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_...
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_...
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_...
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: ...
{ "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_...
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...
{ "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_...
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<Stri...
{ "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_...
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...
{ "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_...
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...
{ "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_...
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: S...
{ "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_...
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_...
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_...
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_...
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_...
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_...
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>, ...
{ "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_...
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_...
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:...
{ "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_...
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_...
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_...
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_...
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 = "miscellaneou...
{ "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_...
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_...
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_...
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_...
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_...
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_...
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_...
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 n...
{ "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_...
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>,...
{ "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_...
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 = "Ref...
{ "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_...
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_...
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_...
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_...
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...
{ "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_...
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_...
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_...
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_...
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...
{ "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_...
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<...
{ "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_...
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(s...
{ "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_...
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>, ...
{ "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_...
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 schem...
{ "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_...
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_...
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_...
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_dat...
{ "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_...
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_...
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_...
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_...
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_...
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 phon...
{ "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_...
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: Opt...
{ "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_...
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_...
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:...
{ "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_...
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_...
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_...
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_...