Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi
oci.OspGateway.getSubscriptions
Explore with Pulumi AI
This data source provides the list of Subscriptions in Oracle Cloud Infrastructure Osp Gateway service.
Get the subscription data for the compartment
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSubscriptions = oci.OspGateway.getSubscriptions({
    compartmentId: compartmentId,
    ospHomeRegion: subscriptionOspHomeRegion,
});
import pulumi
import pulumi_oci as oci
test_subscriptions = oci.OspGateway.get_subscriptions(compartment_id=compartment_id,
    osp_home_region=subscription_osp_home_region)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/ospgateway"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := ospgateway.GetSubscriptions(ctx, &ospgateway.GetSubscriptionsArgs{
			CompartmentId: compartmentId,
			OspHomeRegion: subscriptionOspHomeRegion,
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testSubscriptions = Oci.OspGateway.GetSubscriptions.Invoke(new()
    {
        CompartmentId = compartmentId,
        OspHomeRegion = subscriptionOspHomeRegion,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.OspGateway.OspGatewayFunctions;
import com.pulumi.oci.OspGateway.inputs.GetSubscriptionsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var testSubscriptions = OspGatewayFunctions.getSubscriptions(GetSubscriptionsArgs.builder()
            .compartmentId(compartmentId)
            .ospHomeRegion(subscriptionOspHomeRegion)
            .build());
    }
}
variables:
  testSubscriptions:
    fn::invoke:
      function: oci:OspGateway:getSubscriptions
      arguments:
        compartmentId: ${compartmentId}
        ospHomeRegion: ${subscriptionOspHomeRegion}
Using getSubscriptions
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getSubscriptions(args: GetSubscriptionsArgs, opts?: InvokeOptions): Promise<GetSubscriptionsResult>
function getSubscriptionsOutput(args: GetSubscriptionsOutputArgs, opts?: InvokeOptions): Output<GetSubscriptionsResult>def get_subscriptions(compartment_id: Optional[str] = None,
                      filters: Optional[Sequence[_ospgateway.GetSubscriptionsFilter]] = None,
                      osp_home_region: Optional[str] = None,
                      opts: Optional[InvokeOptions] = None) -> GetSubscriptionsResult
def get_subscriptions_output(compartment_id: Optional[pulumi.Input[str]] = None,
                      filters: Optional[pulumi.Input[Sequence[pulumi.Input[_ospgateway.GetSubscriptionsFilterArgs]]]] = None,
                      osp_home_region: Optional[pulumi.Input[str]] = None,
                      opts: Optional[InvokeOptions] = None) -> Output[GetSubscriptionsResult]func GetSubscriptions(ctx *Context, args *GetSubscriptionsArgs, opts ...InvokeOption) (*GetSubscriptionsResult, error)
func GetSubscriptionsOutput(ctx *Context, args *GetSubscriptionsOutputArgs, opts ...InvokeOption) GetSubscriptionsResultOutput> Note: This function is named GetSubscriptions in the Go SDK.
public static class GetSubscriptions 
{
    public static Task<GetSubscriptionsResult> InvokeAsync(GetSubscriptionsArgs args, InvokeOptions? opts = null)
    public static Output<GetSubscriptionsResult> Invoke(GetSubscriptionsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetSubscriptionsResult> getSubscriptions(GetSubscriptionsArgs args, InvokeOptions options)
public static Output<GetSubscriptionsResult> getSubscriptions(GetSubscriptionsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:OspGateway/getSubscriptions:getSubscriptions
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The OCID of the compartment.
- OspHome stringRegion 
- The home region's public name of the logged in user.
- Filters
List<GetSubscriptions Filter> 
- CompartmentId string
- The OCID of the compartment.
- OspHome stringRegion 
- The home region's public name of the logged in user.
- Filters
[]GetSubscriptions Filter 
- compartmentId String
- The OCID of the compartment.
- ospHome StringRegion 
- The home region's public name of the logged in user.
- filters
List<GetSubscriptions Filter> 
- compartmentId string
- The OCID of the compartment.
- ospHome stringRegion 
- The home region's public name of the logged in user.
- filters
GetSubscriptions Filter[] 
- compartment_id str
- The OCID of the compartment.
- osp_home_ strregion 
- The home region's public name of the logged in user.
- filters
Sequence[ospgateway.Get Subscriptions Filter] 
- compartmentId String
- The OCID of the compartment.
- ospHome StringRegion 
- The home region's public name of the logged in user.
- filters List<Property Map>
getSubscriptions Result
The following output properties are available:
- CompartmentId string
- Id string
- The provider-assigned unique ID for this managed resource.
- OspHome stringRegion 
- SubscriptionCollections List<GetSubscriptions Subscription Collection> 
- The list of subscription_collection.
- Filters
List<GetSubscriptions Filter> 
- CompartmentId string
- Id string
- The provider-assigned unique ID for this managed resource.
- OspHome stringRegion 
- SubscriptionCollections []GetSubscriptions Subscription Collection 
- The list of subscription_collection.
- Filters
[]GetSubscriptions Filter 
- compartmentId String
- id String
- The provider-assigned unique ID for this managed resource.
- ospHome StringRegion 
- subscriptionCollections List<GetSubscriptions Subscription Collection> 
- The list of subscription_collection.
- filters
List<GetSubscriptions Filter> 
- compartmentId string
- id string
- The provider-assigned unique ID for this managed resource.
- ospHome stringRegion 
- subscriptionCollections GetSubscriptions Subscription Collection[] 
- The list of subscription_collection.
- filters
GetSubscriptions Filter[] 
- compartment_id str
- id str
- The provider-assigned unique ID for this managed resource.
- osp_home_ strregion 
- subscription_collections Sequence[ospgateway.Get Subscriptions Subscription Collection] 
- The list of subscription_collection.
- filters
Sequence[ospgateway.Get Subscriptions Filter] 
- compartmentId String
- id String
- The provider-assigned unique ID for this managed resource.
- ospHome StringRegion 
- subscriptionCollections List<Property Map>
- The list of subscription_collection.
- filters List<Property Map>
Supporting Types
GetSubscriptionsFilter  
GetSubscriptionsSubscriptionCollection   
GetSubscriptionsSubscriptionCollectionItem    
- AccountType string
- Account type.
- BillTo stringCust Account Id 
- Bill to customer Account id.
- BillingAddresses List<GetSubscriptions Subscription Collection Item Billing Address> 
- Address details model.
- CompartmentId string
- The OCID of the compartment.
- CurrencyCode string
- Currency code
- Email string
- GsiOrg stringCode 
- GSI Subscription external code.
- Id string
- Subscription id identifier (OCID).
- IsIntent boolTo Pay 
- Payment intension.
- LanguageCode string
- Language short code (en, de, hu, etc)
- OrganizationId string
- GSI organization external identifier.
- OspHome stringRegion 
- The home region's public name of the logged in user.
- PaymentGateways List<GetSubscriptions Subscription Collection Item Payment Gateway> 
- Payment gateway details.
- PaymentOptions List<GetSubscriptions Subscription Collection Item Payment Option> 
- Payment option list of a subscription.
- PlanType string
- Subscription plan type.
- ShipTo stringCust Acct Role Id 
- Ship to customer account role.
- ShipTo stringCust Acct Site Id 
- Ship to customer account site address id.
- SubscriptionId string
- SubscriptionPlan stringNumber 
- Subscription plan number.
- Subscriptions
List<GetSubscriptions Subscription Collection Item Subscription> 
- TaxInfos List<GetSubscriptions Subscription Collection Item Tax Info> 
- Tax details.
- TimePersonal stringTo Corporate Conv 
- Date of upgrade/conversion when account type changed from PERSONAL to CORPORATE
- TimePlan stringUpgrade 
- Date of upgrade/conversion when planType changed from FREE_TIER to PAYG
- TimeStart string
- Start date of the subscription.
- UpgradeState string
- Status of the upgrade.
- UpgradeState stringDetails 
- This field is used to describe the Upgrade State in case of error (E.g. Upgrade failure caused by interfacing Tax details- TaxError)
- AccountType string
- Account type.
- BillTo stringCust Account Id 
- Bill to customer Account id.
- BillingAddresses []GetSubscriptions Subscription Collection Item Billing Address 
- Address details model.
- CompartmentId string
- The OCID of the compartment.
- CurrencyCode string
- Currency code
- Email string
- GsiOrg stringCode 
- GSI Subscription external code.
- Id string
- Subscription id identifier (OCID).
- IsIntent boolTo Pay 
- Payment intension.
- LanguageCode string
- Language short code (en, de, hu, etc)
- OrganizationId string
- GSI organization external identifier.
- OspHome stringRegion 
- The home region's public name of the logged in user.
- PaymentGateways []GetSubscriptions Subscription Collection Item Payment Gateway 
- Payment gateway details.
- PaymentOptions []GetSubscriptions Subscription Collection Item Payment Option 
- Payment option list of a subscription.
- PlanType string
- Subscription plan type.
- ShipTo stringCust Acct Role Id 
- Ship to customer account role.
- ShipTo stringCust Acct Site Id 
- Ship to customer account site address id.
- SubscriptionId string
- SubscriptionPlan stringNumber 
- Subscription plan number.
- Subscriptions
[]GetSubscriptions Subscription Collection Item Subscription 
- TaxInfos []GetSubscriptions Subscription Collection Item Tax Info 
- Tax details.
- TimePersonal stringTo Corporate Conv 
- Date of upgrade/conversion when account type changed from PERSONAL to CORPORATE
- TimePlan stringUpgrade 
- Date of upgrade/conversion when planType changed from FREE_TIER to PAYG
- TimeStart string
- Start date of the subscription.
- UpgradeState string
- Status of the upgrade.
- UpgradeState stringDetails 
- This field is used to describe the Upgrade State in case of error (E.g. Upgrade failure caused by interfacing Tax details- TaxError)
- accountType String
- Account type.
- billTo StringCust Account Id 
- Bill to customer Account id.
- billingAddresses List<GetSubscriptions Subscription Collection Item Billing Address> 
- Address details model.
- compartmentId String
- The OCID of the compartment.
- currencyCode String
- Currency code
- email String
- gsiOrg StringCode 
- GSI Subscription external code.
- id String
- Subscription id identifier (OCID).
- isIntent BooleanTo Pay 
- Payment intension.
- languageCode String
- Language short code (en, de, hu, etc)
- organizationId String
- GSI organization external identifier.
- ospHome StringRegion 
- The home region's public name of the logged in user.
- paymentGateways List<GetSubscriptions Subscription Collection Item Payment Gateway> 
- Payment gateway details.
- paymentOptions List<GetSubscriptions Subscription Collection Item Payment Option> 
- Payment option list of a subscription.
- planType String
- Subscription plan type.
- shipTo StringCust Acct Role Id 
- Ship to customer account role.
- shipTo StringCust Acct Site Id 
- Ship to customer account site address id.
- subscriptionId String
- subscriptionPlan StringNumber 
- Subscription plan number.
- subscriptions
List<GetSubscriptions Subscription Collection Item Subscription> 
- taxInfos List<GetSubscriptions Subscription Collection Item Tax Info> 
- Tax details.
- timePersonal StringTo Corporate Conv 
- Date of upgrade/conversion when account type changed from PERSONAL to CORPORATE
- timePlan StringUpgrade 
- Date of upgrade/conversion when planType changed from FREE_TIER to PAYG
- timeStart String
- Start date of the subscription.
- upgradeState String
- Status of the upgrade.
- upgradeState StringDetails 
- This field is used to describe the Upgrade State in case of error (E.g. Upgrade failure caused by interfacing Tax details- TaxError)
- accountType string
- Account type.
- billTo stringCust Account Id 
- Bill to customer Account id.
- billingAddresses GetSubscriptions Subscription Collection Item Billing Address[] 
- Address details model.
- compartmentId string
- The OCID of the compartment.
- currencyCode string
- Currency code
- email string
- gsiOrg stringCode 
- GSI Subscription external code.
- id string
- Subscription id identifier (OCID).
- isIntent booleanTo Pay 
- Payment intension.
- languageCode string
- Language short code (en, de, hu, etc)
- organizationId string
- GSI organization external identifier.
- ospHome stringRegion 
- The home region's public name of the logged in user.
- paymentGateways GetSubscriptions Subscription Collection Item Payment Gateway[] 
- Payment gateway details.
- paymentOptions GetSubscriptions Subscription Collection Item Payment Option[] 
- Payment option list of a subscription.
- planType string
- Subscription plan type.
- shipTo stringCust Acct Role Id 
- Ship to customer account role.
- shipTo stringCust Acct Site Id 
- Ship to customer account site address id.
- subscriptionId string
- subscriptionPlan stringNumber 
- Subscription plan number.
- subscriptions
GetSubscriptions Subscription Collection Item Subscription[] 
- taxInfos GetSubscriptions Subscription Collection Item Tax Info[] 
- Tax details.
- timePersonal stringTo Corporate Conv 
- Date of upgrade/conversion when account type changed from PERSONAL to CORPORATE
- timePlan stringUpgrade 
- Date of upgrade/conversion when planType changed from FREE_TIER to PAYG
- timeStart string
- Start date of the subscription.
- upgradeState string
- Status of the upgrade.
- upgradeState stringDetails 
- This field is used to describe the Upgrade State in case of error (E.g. Upgrade failure caused by interfacing Tax details- TaxError)
- account_type str
- Account type.
- bill_to_ strcust_ account_ id 
- Bill to customer Account id.
- billing_addresses Sequence[ospgateway.Get Subscriptions Subscription Collection Item Billing Address] 
- Address details model.
- compartment_id str
- The OCID of the compartment.
- currency_code str
- Currency code
- email str
- gsi_org_ strcode 
- GSI Subscription external code.
- id str
- Subscription id identifier (OCID).
- is_intent_ boolto_ pay 
- Payment intension.
- language_code str
- Language short code (en, de, hu, etc)
- organization_id str
- GSI organization external identifier.
- osp_home_ strregion 
- The home region's public name of the logged in user.
- payment_gateways Sequence[ospgateway.Get Subscriptions Subscription Collection Item Payment Gateway] 
- Payment gateway details.
- payment_options Sequence[ospgateway.Get Subscriptions Subscription Collection Item Payment Option] 
- Payment option list of a subscription.
- plan_type str
- Subscription plan type.
- ship_to_ strcust_ acct_ role_ id 
- Ship to customer account role.
- ship_to_ strcust_ acct_ site_ id 
- Ship to customer account site address id.
- subscription_id str
- subscription_plan_ strnumber 
- Subscription plan number.
- subscriptions
Sequence[ospgateway.Get Subscriptions Subscription Collection Item Subscription] 
- tax_infos Sequence[ospgateway.Get Subscriptions Subscription Collection Item Tax Info] 
- Tax details.
- time_personal_ strto_ corporate_ conv 
- Date of upgrade/conversion when account type changed from PERSONAL to CORPORATE
- time_plan_ strupgrade 
- Date of upgrade/conversion when planType changed from FREE_TIER to PAYG
- time_start str
- Start date of the subscription.
- upgrade_state str
- Status of the upgrade.
- upgrade_state_ strdetails 
- This field is used to describe the Upgrade State in case of error (E.g. Upgrade failure caused by interfacing Tax details- TaxError)
- accountType String
- Account type.
- billTo StringCust Account Id 
- Bill to customer Account id.
- billingAddresses List<Property Map>
- Address details model.
- compartmentId String
- The OCID of the compartment.
- currencyCode String
- Currency code
- email String
- gsiOrg StringCode 
- GSI Subscription external code.
- id String
- Subscription id identifier (OCID).
- isIntent BooleanTo Pay 
- Payment intension.
- languageCode String
- Language short code (en, de, hu, etc)
- organizationId String
- GSI organization external identifier.
- ospHome StringRegion 
- The home region's public name of the logged in user.
- paymentGateways List<Property Map>
- Payment gateway details.
- paymentOptions List<Property Map>
- Payment option list of a subscription.
- planType String
- Subscription plan type.
- shipTo StringCust Acct Role Id 
- Ship to customer account role.
- shipTo StringCust Acct Site Id 
- Ship to customer account site address id.
- subscriptionId String
- subscriptionPlan StringNumber 
- Subscription plan number.
- subscriptions List<Property Map>
- taxInfos List<Property Map>
- Tax details.
- timePersonal StringTo Corporate Conv 
- Date of upgrade/conversion when account type changed from PERSONAL to CORPORATE
- timePlan StringUpgrade 
- Date of upgrade/conversion when planType changed from FREE_TIER to PAYG
- timeStart String
- Start date of the subscription.
- upgradeState String
- Status of the upgrade.
- upgradeState StringDetails 
- This field is used to describe the Upgrade State in case of error (E.g. Upgrade failure caused by interfacing Tax details- TaxError)
GetSubscriptionsSubscriptionCollectionItemBillingAddress      
- AddressKey string
- Address identifier.
- City string
- Name of the city.
- CompanyName string
- Name of the customer company.
- ContributorClass string
- Contributor class of the customer company.
- Country string
- Country of the address.
- County string
- County of the address.
- DepartmentName string
- Department name of the customer company.
- EmailAddress string
- The email address of the paypal user.
- FirstName string
- First name of the paypal user.
- InternalNumber string
- Internal number of the customer company.
- JobTitle string
- Job title of the contact person.
- LastName string
- Last name of the paypal user.
- Line1 string
- Address line 1.
- Line2 string
- Address line 2.
- Line3 string
- Address line 3.
- Line4 string
- Address line 4.
- MiddleName string
- Middle name of the contact person.
- MunicipalInscription string
- Municipal Inscription.
- PhoneCountry stringCode 
- Phone country code of the contact person.
- PhoneNumber string
- Phone number of the contact person.
- PostalCode string
- Post code of the address.
- Province string
- Province of the address.
- State string
- State of the address.
- StateInscription string
- State Inscription.
- StreetName string
- Street name of the address.
- StreetNumber string
- Street number of the address.
- AddressKey string
- Address identifier.
- City string
- Name of the city.
- CompanyName string
- Name of the customer company.
- ContributorClass string
- Contributor class of the customer company.
- Country string
- Country of the address.
- County string
- County of the address.
- DepartmentName string
- Department name of the customer company.
- EmailAddress string
- The email address of the paypal user.
- FirstName string
- First name of the paypal user.
- InternalNumber string
- Internal number of the customer company.
- JobTitle string
- Job title of the contact person.
- LastName string
- Last name of the paypal user.
- Line1 string
- Address line 1.
- Line2 string
- Address line 2.
- Line3 string
- Address line 3.
- Line4 string
- Address line 4.
- MiddleName string
- Middle name of the contact person.
- MunicipalInscription string
- Municipal Inscription.
- PhoneCountry stringCode 
- Phone country code of the contact person.
- PhoneNumber string
- Phone number of the contact person.
- PostalCode string
- Post code of the address.
- Province string
- Province of the address.
- State string
- State of the address.
- StateInscription string
- State Inscription.
- StreetName string
- Street name of the address.
- StreetNumber string
- Street number of the address.
- addressKey String
- Address identifier.
- city String
- Name of the city.
- companyName String
- Name of the customer company.
- contributorClass String
- Contributor class of the customer company.
- country String
- Country of the address.
- county String
- County of the address.
- departmentName String
- Department name of the customer company.
- emailAddress String
- The email address of the paypal user.
- firstName String
- First name of the paypal user.
- internalNumber String
- Internal number of the customer company.
- jobTitle String
- Job title of the contact person.
- lastName String
- Last name of the paypal user.
- line1 String
- Address line 1.
- line2 String
- Address line 2.
- line3 String
- Address line 3.
- line4 String
- Address line 4.
- middleName String
- Middle name of the contact person.
- municipalInscription String
- Municipal Inscription.
- phoneCountry StringCode 
- Phone country code of the contact person.
- phoneNumber String
- Phone number of the contact person.
- postalCode String
- Post code of the address.
- province String
- Province of the address.
- state String
- State of the address.
- stateInscription String
- State Inscription.
- streetName String
- Street name of the address.
- streetNumber String
- Street number of the address.
- addressKey string
- Address identifier.
- city string
- Name of the city.
- companyName string
- Name of the customer company.
- contributorClass string
- Contributor class of the customer company.
- country string
- Country of the address.
- county string
- County of the address.
- departmentName string
- Department name of the customer company.
- emailAddress string
- The email address of the paypal user.
- firstName string
- First name of the paypal user.
- internalNumber string
- Internal number of the customer company.
- jobTitle string
- Job title of the contact person.
- lastName string
- Last name of the paypal user.
- line1 string
- Address line 1.
- line2 string
- Address line 2.
- line3 string
- Address line 3.
- line4 string
- Address line 4.
- middleName string
- Middle name of the contact person.
- municipalInscription string
- Municipal Inscription.
- phoneCountry stringCode 
- Phone country code of the contact person.
- phoneNumber string
- Phone number of the contact person.
- postalCode string
- Post code of the address.
- province string
- Province of the address.
- state string
- State of the address.
- stateInscription string
- State Inscription.
- streetName string
- Street name of the address.
- streetNumber string
- Street number of the address.
- address_key str
- Address identifier.
- city str
- Name of the city.
- company_name str
- Name of the customer company.
- contributor_class str
- Contributor class of the customer company.
- country str
- Country of the address.
- county str
- County of the address.
- department_name str
- Department name of the customer company.
- email_address str
- The email address of the paypal user.
- first_name str
- First name of the paypal user.
- internal_number str
- Internal number of the customer company.
- job_title str
- Job title of the contact person.
- last_name str
- Last name of the paypal user.
- line1 str
- Address line 1.
- line2 str
- Address line 2.
- line3 str
- Address line 3.
- line4 str
- Address line 4.
- middle_name str
- Middle name of the contact person.
- municipal_inscription str
- Municipal Inscription.
- phone_country_ strcode 
- Phone country code of the contact person.
- phone_number str
- Phone number of the contact person.
- postal_code str
- Post code of the address.
- province str
- Province of the address.
- state str
- State of the address.
- state_inscription str
- State Inscription.
- street_name str
- Street name of the address.
- street_number str
- Street number of the address.
- addressKey String
- Address identifier.
- city String
- Name of the city.
- companyName String
- Name of the customer company.
- contributorClass String
- Contributor class of the customer company.
- country String
- Country of the address.
- county String
- County of the address.
- departmentName String
- Department name of the customer company.
- emailAddress String
- The email address of the paypal user.
- firstName String
- First name of the paypal user.
- internalNumber String
- Internal number of the customer company.
- jobTitle String
- Job title of the contact person.
- lastName String
- Last name of the paypal user.
- line1 String
- Address line 1.
- line2 String
- Address line 2.
- line3 String
- Address line 3.
- line4 String
- Address line 4.
- middleName String
- Middle name of the contact person.
- municipalInscription String
- Municipal Inscription.
- phoneCountry StringCode 
- Phone country code of the contact person.
- phoneNumber String
- Phone number of the contact person.
- postalCode String
- Post code of the address.
- province String
- Province of the address.
- state String
- State of the address.
- stateInscription String
- State Inscription.
- streetName String
- Street name of the address.
- streetNumber String
- Street number of the address.
GetSubscriptionsSubscriptionCollectionItemPaymentGateway      
- merchantDefined List<Property Map>Datas 
- Merchant details.
GetSubscriptionsSubscriptionCollectionItemPaymentGatewayMerchantDefinedData         
- CloudAccount stringName 
- Cloud account name.
- PromoType string
- Promotion type code.
- CloudAccount stringName 
- Cloud account name.
- PromoType string
- Promotion type code.
- cloudAccount StringName 
- Cloud account name.
- promoType String
- Promotion type code.
- cloudAccount stringName 
- Cloud account name.
- promoType string
- Promotion type code.
- cloud_account_ strname 
- Cloud account name.
- promo_type str
- Promotion type code.
- cloudAccount StringName 
- Cloud account name.
- promoType String
- Promotion type code.
GetSubscriptionsSubscriptionCollectionItemPaymentOption      
- CreditCard stringType 
- Credit card type.
- EmailAddress string
- The email address of the paypal user.
- ExtBilling stringAgreement Id 
- Agreement id for the paypal account.
- FirstName string
- First name of the paypal user.
- LastDigits string
- Last four digits of the card.
- LastName string
- Last name of the paypal user.
- NameOn stringCard 
- Name on the credit card.
- PaymentMethod string
- Payment method
- TimeExpiration string
- Expired date of the credit card.
- WalletInstrument stringId 
- Wallet instrument internal id.
- WalletTransaction stringId 
- Wallet transaction id.
- CreditCard stringType 
- Credit card type.
- EmailAddress string
- The email address of the paypal user.
- ExtBilling stringAgreement Id 
- Agreement id for the paypal account.
- FirstName string
- First name of the paypal user.
- LastDigits string
- Last four digits of the card.
- LastName string
- Last name of the paypal user.
- NameOn stringCard 
- Name on the credit card.
- PaymentMethod string
- Payment method
- TimeExpiration string
- Expired date of the credit card.
- WalletInstrument stringId 
- Wallet instrument internal id.
- WalletTransaction stringId 
- Wallet transaction id.
- creditCard StringType 
- Credit card type.
- emailAddress String
- The email address of the paypal user.
- extBilling StringAgreement Id 
- Agreement id for the paypal account.
- firstName String
- First name of the paypal user.
- lastDigits String
- Last four digits of the card.
- lastName String
- Last name of the paypal user.
- nameOn StringCard 
- Name on the credit card.
- paymentMethod String
- Payment method
- timeExpiration String
- Expired date of the credit card.
- walletInstrument StringId 
- Wallet instrument internal id.
- walletTransaction StringId 
- Wallet transaction id.
- creditCard stringType 
- Credit card type.
- emailAddress string
- The email address of the paypal user.
- extBilling stringAgreement Id 
- Agreement id for the paypal account.
- firstName string
- First name of the paypal user.
- lastDigits string
- Last four digits of the card.
- lastName string
- Last name of the paypal user.
- nameOn stringCard 
- Name on the credit card.
- paymentMethod string
- Payment method
- timeExpiration string
- Expired date of the credit card.
- walletInstrument stringId 
- Wallet instrument internal id.
- walletTransaction stringId 
- Wallet transaction id.
- credit_card_ strtype 
- Credit card type.
- email_address str
- The email address of the paypal user.
- ext_billing_ stragreement_ id 
- Agreement id for the paypal account.
- first_name str
- First name of the paypal user.
- last_digits str
- Last four digits of the card.
- last_name str
- Last name of the paypal user.
- name_on_ strcard 
- Name on the credit card.
- payment_method str
- Payment method
- time_expiration str
- Expired date of the credit card.
- wallet_instrument_ strid 
- Wallet instrument internal id.
- wallet_transaction_ strid 
- Wallet transaction id.
- creditCard StringType 
- Credit card type.
- emailAddress String
- The email address of the paypal user.
- extBilling StringAgreement Id 
- Agreement id for the paypal account.
- firstName String
- First name of the paypal user.
- lastDigits String
- Last four digits of the card.
- lastName String
- Last name of the paypal user.
- nameOn StringCard 
- Name on the credit card.
- paymentMethod String
- Payment method
- timeExpiration String
- Expired date of the credit card.
- walletInstrument StringId 
- Wallet instrument internal id.
- walletTransaction StringId 
- Wallet transaction id.
GetSubscriptionsSubscriptionCollectionItemSubscription     
- AccountType string
- Account type.
- BillTo stringCust Account Id 
- Bill to customer Account id.
- BillingAddresses List<GetSubscriptions Subscription Collection Item Subscription Billing Address> 
- Address details model.
- CurrencyCode string
- Currency code
- GsiOrg stringCode 
- GSI Subscription external code.
- Id string
- Subscription id identifier (OCID).
- IsIntent boolTo Pay 
- Payment intension.
- LanguageCode string
- Language short code (en, de, hu, etc)
- OrganizationId string
- GSI organization external identifier.
- PaymentGateways List<GetSubscriptions Subscription Collection Item Subscription Payment Gateway> 
- Payment gateway details.
- PaymentOptions List<GetSubscriptions Subscription Collection Item Subscription Payment Option> 
- Payment option list of a subscription.
- PlanType string
- Subscription plan type.
- ShipTo stringCust Acct Role Id 
- Ship to customer account role.
- ShipTo stringCust Acct Site Id 
- Ship to customer account site address id.
- SubscriptionPlan stringNumber 
- Subscription plan number.
- TaxInfos List<GetSubscriptions Subscription Collection Item Subscription Tax Info> 
- Tax details.
- TimePersonal stringTo Corporate Conv 
- Date of upgrade/conversion when account type changed from PERSONAL to CORPORATE
- TimePlan stringUpgrade 
- Date of upgrade/conversion when planType changed from FREE_TIER to PAYG
- TimeStart string
- Start date of the subscription.
- UpgradeState string
- Status of the upgrade.
- UpgradeState stringDetails 
- This field is used to describe the Upgrade State in case of error (E.g. Upgrade failure caused by interfacing Tax details- TaxError)
- AccountType string
- Account type.
- BillTo stringCust Account Id 
- Bill to customer Account id.
- BillingAddresses []GetSubscriptions Subscription Collection Item Subscription Billing Address 
- Address details model.
- CurrencyCode string
- Currency code
- GsiOrg stringCode 
- GSI Subscription external code.
- Id string
- Subscription id identifier (OCID).
- IsIntent boolTo Pay 
- Payment intension.
- LanguageCode string
- Language short code (en, de, hu, etc)
- OrganizationId string
- GSI organization external identifier.
- PaymentGateways []GetSubscriptions Subscription Collection Item Subscription Payment Gateway 
- Payment gateway details.
- PaymentOptions []GetSubscriptions Subscription Collection Item Subscription Payment Option 
- Payment option list of a subscription.
- PlanType string
- Subscription plan type.
- ShipTo stringCust Acct Role Id 
- Ship to customer account role.
- ShipTo stringCust Acct Site Id 
- Ship to customer account site address id.
- SubscriptionPlan stringNumber 
- Subscription plan number.
- TaxInfos []GetSubscriptions Subscription Collection Item Subscription Tax Info 
- Tax details.
- TimePersonal stringTo Corporate Conv 
- Date of upgrade/conversion when account type changed from PERSONAL to CORPORATE
- TimePlan stringUpgrade 
- Date of upgrade/conversion when planType changed from FREE_TIER to PAYG
- TimeStart string
- Start date of the subscription.
- UpgradeState string
- Status of the upgrade.
- UpgradeState stringDetails 
- This field is used to describe the Upgrade State in case of error (E.g. Upgrade failure caused by interfacing Tax details- TaxError)
- accountType String
- Account type.
- billTo StringCust Account Id 
- Bill to customer Account id.
- billingAddresses List<GetSubscriptions Subscription Collection Item Subscription Billing Address> 
- Address details model.
- currencyCode String
- Currency code
- gsiOrg StringCode 
- GSI Subscription external code.
- id String
- Subscription id identifier (OCID).
- isIntent BooleanTo Pay 
- Payment intension.
- languageCode String
- Language short code (en, de, hu, etc)
- organizationId String
- GSI organization external identifier.
- paymentGateways List<GetSubscriptions Subscription Collection Item Subscription Payment Gateway> 
- Payment gateway details.
- paymentOptions List<GetSubscriptions Subscription Collection Item Subscription Payment Option> 
- Payment option list of a subscription.
- planType String
- Subscription plan type.
- shipTo StringCust Acct Role Id 
- Ship to customer account role.
- shipTo StringCust Acct Site Id 
- Ship to customer account site address id.
- subscriptionPlan StringNumber 
- Subscription plan number.
- taxInfos List<GetSubscriptions Subscription Collection Item Subscription Tax Info> 
- Tax details.
- timePersonal StringTo Corporate Conv 
- Date of upgrade/conversion when account type changed from PERSONAL to CORPORATE
- timePlan StringUpgrade 
- Date of upgrade/conversion when planType changed from FREE_TIER to PAYG
- timeStart String
- Start date of the subscription.
- upgradeState String
- Status of the upgrade.
- upgradeState StringDetails 
- This field is used to describe the Upgrade State in case of error (E.g. Upgrade failure caused by interfacing Tax details- TaxError)
- accountType string
- Account type.
- billTo stringCust Account Id 
- Bill to customer Account id.
- billingAddresses GetSubscriptions Subscription Collection Item Subscription Billing Address[] 
- Address details model.
- currencyCode string
- Currency code
- gsiOrg stringCode 
- GSI Subscription external code.
- id string
- Subscription id identifier (OCID).
- isIntent booleanTo Pay 
- Payment intension.
- languageCode string
- Language short code (en, de, hu, etc)
- organizationId string
- GSI organization external identifier.
- paymentGateways GetSubscriptions Subscription Collection Item Subscription Payment Gateway[] 
- Payment gateway details.
- paymentOptions GetSubscriptions Subscription Collection Item Subscription Payment Option[] 
- Payment option list of a subscription.
- planType string
- Subscription plan type.
- shipTo stringCust Acct Role Id 
- Ship to customer account role.
- shipTo stringCust Acct Site Id 
- Ship to customer account site address id.
- subscriptionPlan stringNumber 
- Subscription plan number.
- taxInfos GetSubscriptions Subscription Collection Item Subscription Tax Info[] 
- Tax details.
- timePersonal stringTo Corporate Conv 
- Date of upgrade/conversion when account type changed from PERSONAL to CORPORATE
- timePlan stringUpgrade 
- Date of upgrade/conversion when planType changed from FREE_TIER to PAYG
- timeStart string
- Start date of the subscription.
- upgradeState string
- Status of the upgrade.
- upgradeState stringDetails 
- This field is used to describe the Upgrade State in case of error (E.g. Upgrade failure caused by interfacing Tax details- TaxError)
- account_type str
- Account type.
- bill_to_ strcust_ account_ id 
- Bill to customer Account id.
- billing_addresses Sequence[ospgateway.Get Subscriptions Subscription Collection Item Subscription Billing Address] 
- Address details model.
- currency_code str
- Currency code
- gsi_org_ strcode 
- GSI Subscription external code.
- id str
- Subscription id identifier (OCID).
- is_intent_ boolto_ pay 
- Payment intension.
- language_code str
- Language short code (en, de, hu, etc)
- organization_id str
- GSI organization external identifier.
- payment_gateways Sequence[ospgateway.Get Subscriptions Subscription Collection Item Subscription Payment Gateway] 
- Payment gateway details.
- payment_options Sequence[ospgateway.Get Subscriptions Subscription Collection Item Subscription Payment Option] 
- Payment option list of a subscription.
- plan_type str
- Subscription plan type.
- ship_to_ strcust_ acct_ role_ id 
- Ship to customer account role.
- ship_to_ strcust_ acct_ site_ id 
- Ship to customer account site address id.
- subscription_plan_ strnumber 
- Subscription plan number.
- tax_infos Sequence[ospgateway.Get Subscriptions Subscription Collection Item Subscription Tax Info] 
- Tax details.
- time_personal_ strto_ corporate_ conv 
- Date of upgrade/conversion when account type changed from PERSONAL to CORPORATE
- time_plan_ strupgrade 
- Date of upgrade/conversion when planType changed from FREE_TIER to PAYG
- time_start str
- Start date of the subscription.
- upgrade_state str
- Status of the upgrade.
- upgrade_state_ strdetails 
- This field is used to describe the Upgrade State in case of error (E.g. Upgrade failure caused by interfacing Tax details- TaxError)
- accountType String
- Account type.
- billTo StringCust Account Id 
- Bill to customer Account id.
- billingAddresses List<Property Map>
- Address details model.
- currencyCode String
- Currency code
- gsiOrg StringCode 
- GSI Subscription external code.
- id String
- Subscription id identifier (OCID).
- isIntent BooleanTo Pay 
- Payment intension.
- languageCode String
- Language short code (en, de, hu, etc)
- organizationId String
- GSI organization external identifier.
- paymentGateways List<Property Map>
- Payment gateway details.
- paymentOptions List<Property Map>
- Payment option list of a subscription.
- planType String
- Subscription plan type.
- shipTo StringCust Acct Role Id 
- Ship to customer account role.
- shipTo StringCust Acct Site Id 
- Ship to customer account site address id.
- subscriptionPlan StringNumber 
- Subscription plan number.
- taxInfos List<Property Map>
- Tax details.
- timePersonal StringTo Corporate Conv 
- Date of upgrade/conversion when account type changed from PERSONAL to CORPORATE
- timePlan StringUpgrade 
- Date of upgrade/conversion when planType changed from FREE_TIER to PAYG
- timeStart String
- Start date of the subscription.
- upgradeState String
- Status of the upgrade.
- upgradeState StringDetails 
- This field is used to describe the Upgrade State in case of error (E.g. Upgrade failure caused by interfacing Tax details- TaxError)
GetSubscriptionsSubscriptionCollectionItemSubscriptionBillingAddress       
- AddressKey string
- Address identifier.
- City string
- Name of the city.
- CompanyName string
- Name of the customer company.
- ContributorClass string
- Contributor class of the customer company.
- Country string
- Country of the address.
- County string
- County of the address.
- DepartmentName string
- Department name of the customer company.
- EmailAddress string
- The email address of the paypal user.
- FirstName string
- First name of the paypal user.
- InternalNumber string
- Internal number of the customer company.
- JobTitle string
- Job title of the contact person.
- LastName string
- Last name of the paypal user.
- Line1 string
- Address line 1.
- Line2 string
- Address line 2.
- Line3 string
- Address line 3.
- Line4 string
- Address line 4.
- MiddleName string
- Middle name of the contact person.
- MunicipalInscription string
- Municipal Inscription.
- PhoneCountry stringCode 
- Phone country code of the contact person.
- PhoneNumber string
- Phone number of the contact person.
- PostalCode string
- Post code of the address.
- Province string
- Province of the address.
- State string
- State of the address.
- StateInscription string
- State Inscription.
- StreetName string
- Street name of the address.
- StreetNumber string
- Street number of the address.
- AddressKey string
- Address identifier.
- City string
- Name of the city.
- CompanyName string
- Name of the customer company.
- ContributorClass string
- Contributor class of the customer company.
- Country string
- Country of the address.
- County string
- County of the address.
- DepartmentName string
- Department name of the customer company.
- EmailAddress string
- The email address of the paypal user.
- FirstName string
- First name of the paypal user.
- InternalNumber string
- Internal number of the customer company.
- JobTitle string
- Job title of the contact person.
- LastName string
- Last name of the paypal user.
- Line1 string
- Address line 1.
- Line2 string
- Address line 2.
- Line3 string
- Address line 3.
- Line4 string
- Address line 4.
- MiddleName string
- Middle name of the contact person.
- MunicipalInscription string
- Municipal Inscription.
- PhoneCountry stringCode 
- Phone country code of the contact person.
- PhoneNumber string
- Phone number of the contact person.
- PostalCode string
- Post code of the address.
- Province string
- Province of the address.
- State string
- State of the address.
- StateInscription string
- State Inscription.
- StreetName string
- Street name of the address.
- StreetNumber string
- Street number of the address.
- addressKey String
- Address identifier.
- city String
- Name of the city.
- companyName String
- Name of the customer company.
- contributorClass String
- Contributor class of the customer company.
- country String
- Country of the address.
- county String
- County of the address.
- departmentName String
- Department name of the customer company.
- emailAddress String
- The email address of the paypal user.
- firstName String
- First name of the paypal user.
- internalNumber String
- Internal number of the customer company.
- jobTitle String
- Job title of the contact person.
- lastName String
- Last name of the paypal user.
- line1 String
- Address line 1.
- line2 String
- Address line 2.
- line3 String
- Address line 3.
- line4 String
- Address line 4.
- middleName String
- Middle name of the contact person.
- municipalInscription String
- Municipal Inscription.
- phoneCountry StringCode 
- Phone country code of the contact person.
- phoneNumber String
- Phone number of the contact person.
- postalCode String
- Post code of the address.
- province String
- Province of the address.
- state String
- State of the address.
- stateInscription String
- State Inscription.
- streetName String
- Street name of the address.
- streetNumber String
- Street number of the address.
- addressKey string
- Address identifier.
- city string
- Name of the city.
- companyName string
- Name of the customer company.
- contributorClass string
- Contributor class of the customer company.
- country string
- Country of the address.
- county string
- County of the address.
- departmentName string
- Department name of the customer company.
- emailAddress string
- The email address of the paypal user.
- firstName string
- First name of the paypal user.
- internalNumber string
- Internal number of the customer company.
- jobTitle string
- Job title of the contact person.
- lastName string
- Last name of the paypal user.
- line1 string
- Address line 1.
- line2 string
- Address line 2.
- line3 string
- Address line 3.
- line4 string
- Address line 4.
- middleName string
- Middle name of the contact person.
- municipalInscription string
- Municipal Inscription.
- phoneCountry stringCode 
- Phone country code of the contact person.
- phoneNumber string
- Phone number of the contact person.
- postalCode string
- Post code of the address.
- province string
- Province of the address.
- state string
- State of the address.
- stateInscription string
- State Inscription.
- streetName string
- Street name of the address.
- streetNumber string
- Street number of the address.
- address_key str
- Address identifier.
- city str
- Name of the city.
- company_name str
- Name of the customer company.
- contributor_class str
- Contributor class of the customer company.
- country str
- Country of the address.
- county str
- County of the address.
- department_name str
- Department name of the customer company.
- email_address str
- The email address of the paypal user.
- first_name str
- First name of the paypal user.
- internal_number str
- Internal number of the customer company.
- job_title str
- Job title of the contact person.
- last_name str
- Last name of the paypal user.
- line1 str
- Address line 1.
- line2 str
- Address line 2.
- line3 str
- Address line 3.
- line4 str
- Address line 4.
- middle_name str
- Middle name of the contact person.
- municipal_inscription str
- Municipal Inscription.
- phone_country_ strcode 
- Phone country code of the contact person.
- phone_number str
- Phone number of the contact person.
- postal_code str
- Post code of the address.
- province str
- Province of the address.
- state str
- State of the address.
- state_inscription str
- State Inscription.
- street_name str
- Street name of the address.
- street_number str
- Street number of the address.
- addressKey String
- Address identifier.
- city String
- Name of the city.
- companyName String
- Name of the customer company.
- contributorClass String
- Contributor class of the customer company.
- country String
- Country of the address.
- county String
- County of the address.
- departmentName String
- Department name of the customer company.
- emailAddress String
- The email address of the paypal user.
- firstName String
- First name of the paypal user.
- internalNumber String
- Internal number of the customer company.
- jobTitle String
- Job title of the contact person.
- lastName String
- Last name of the paypal user.
- line1 String
- Address line 1.
- line2 String
- Address line 2.
- line3 String
- Address line 3.
- line4 String
- Address line 4.
- middleName String
- Middle name of the contact person.
- municipalInscription String
- Municipal Inscription.
- phoneCountry StringCode 
- Phone country code of the contact person.
- phoneNumber String
- Phone number of the contact person.
- postalCode String
- Post code of the address.
- province String
- Province of the address.
- state String
- State of the address.
- stateInscription String
- State Inscription.
- streetName String
- Street name of the address.
- streetNumber String
- Street number of the address.
GetSubscriptionsSubscriptionCollectionItemSubscriptionPaymentGateway       
- merchantDefined List<Property Map>Datas 
- Merchant details.
GetSubscriptionsSubscriptionCollectionItemSubscriptionPaymentGatewayMerchantDefinedData          
- CloudAccount stringName 
- Cloud account name.
- PromoType string
- Promotion type code.
- CloudAccount stringName 
- Cloud account name.
- PromoType string
- Promotion type code.
- cloudAccount StringName 
- Cloud account name.
- promoType String
- Promotion type code.
- cloudAccount stringName 
- Cloud account name.
- promoType string
- Promotion type code.
- cloud_account_ strname 
- Cloud account name.
- promo_type str
- Promotion type code.
- cloudAccount StringName 
- Cloud account name.
- promoType String
- Promotion type code.
GetSubscriptionsSubscriptionCollectionItemSubscriptionPaymentOption       
- CreditCard stringType 
- Credit card type.
- EmailAddress string
- The email address of the paypal user.
- ExtBilling stringAgreement Id 
- Agreement id for the paypal account.
- FirstName string
- First name of the paypal user.
- LastDigits string
- Last four digits of the card.
- LastName string
- Last name of the paypal user.
- NameOn stringCard 
- Name on the credit card.
- PaymentMethod string
- Payment method
- TimeExpiration string
- Expired date of the credit card.
- WalletInstrument stringId 
- Wallet instrument internal id.
- WalletTransaction stringId 
- Wallet transaction id.
- CreditCard stringType 
- Credit card type.
- EmailAddress string
- The email address of the paypal user.
- ExtBilling stringAgreement Id 
- Agreement id for the paypal account.
- FirstName string
- First name of the paypal user.
- LastDigits string
- Last four digits of the card.
- LastName string
- Last name of the paypal user.
- NameOn stringCard 
- Name on the credit card.
- PaymentMethod string
- Payment method
- TimeExpiration string
- Expired date of the credit card.
- WalletInstrument stringId 
- Wallet instrument internal id.
- WalletTransaction stringId 
- Wallet transaction id.
- creditCard StringType 
- Credit card type.
- emailAddress String
- The email address of the paypal user.
- extBilling StringAgreement Id 
- Agreement id for the paypal account.
- firstName String
- First name of the paypal user.
- lastDigits String
- Last four digits of the card.
- lastName String
- Last name of the paypal user.
- nameOn StringCard 
- Name on the credit card.
- paymentMethod String
- Payment method
- timeExpiration String
- Expired date of the credit card.
- walletInstrument StringId 
- Wallet instrument internal id.
- walletTransaction StringId 
- Wallet transaction id.
- creditCard stringType 
- Credit card type.
- emailAddress string
- The email address of the paypal user.
- extBilling stringAgreement Id 
- Agreement id for the paypal account.
- firstName string
- First name of the paypal user.
- lastDigits string
- Last four digits of the card.
- lastName string
- Last name of the paypal user.
- nameOn stringCard 
- Name on the credit card.
- paymentMethod string
- Payment method
- timeExpiration string
- Expired date of the credit card.
- walletInstrument stringId 
- Wallet instrument internal id.
- walletTransaction stringId 
- Wallet transaction id.
- credit_card_ strtype 
- Credit card type.
- email_address str
- The email address of the paypal user.
- ext_billing_ stragreement_ id 
- Agreement id for the paypal account.
- first_name str
- First name of the paypal user.
- last_digits str
- Last four digits of the card.
- last_name str
- Last name of the paypal user.
- name_on_ strcard 
- Name on the credit card.
- payment_method str
- Payment method
- time_expiration str
- Expired date of the credit card.
- wallet_instrument_ strid 
- Wallet instrument internal id.
- wallet_transaction_ strid 
- Wallet transaction id.
- creditCard StringType 
- Credit card type.
- emailAddress String
- The email address of the paypal user.
- extBilling StringAgreement Id 
- Agreement id for the paypal account.
- firstName String
- First name of the paypal user.
- lastDigits String
- Last four digits of the card.
- lastName String
- Last name of the paypal user.
- nameOn StringCard 
- Name on the credit card.
- paymentMethod String
- Payment method
- timeExpiration String
- Expired date of the credit card.
- walletInstrument StringId 
- Wallet instrument internal id.
- walletTransaction StringId 
- Wallet transaction id.
GetSubscriptionsSubscriptionCollectionItemSubscriptionTaxInfo       
- NoTax stringReason Code 
- Tax exemption reason code.
- NoTax stringReason Code Details 
- Tax exemption reason description.
- TaxCnpj string
- Brazilian companies' CNPJ number.
- TaxPayer stringId 
- Tay payer identifier.
- TaxReg stringNumber 
- Tax registration number.
- NoTax stringReason Code 
- Tax exemption reason code.
- NoTax stringReason Code Details 
- Tax exemption reason description.
- TaxCnpj string
- Brazilian companies' CNPJ number.
- TaxPayer stringId 
- Tay payer identifier.
- TaxReg stringNumber 
- Tax registration number.
- noTax StringReason Code 
- Tax exemption reason code.
- noTax StringReason Code Details 
- Tax exemption reason description.
- taxCnpj String
- Brazilian companies' CNPJ number.
- taxPayer StringId 
- Tay payer identifier.
- taxReg StringNumber 
- Tax registration number.
- noTax stringReason Code 
- Tax exemption reason code.
- noTax stringReason Code Details 
- Tax exemption reason description.
- taxCnpj string
- Brazilian companies' CNPJ number.
- taxPayer stringId 
- Tay payer identifier.
- taxReg stringNumber 
- Tax registration number.
- no_tax_ strreason_ code 
- Tax exemption reason code.
- no_tax_ strreason_ code_ details 
- Tax exemption reason description.
- tax_cnpj str
- Brazilian companies' CNPJ number.
- tax_payer_ strid 
- Tay payer identifier.
- tax_reg_ strnumber 
- Tax registration number.
- noTax StringReason Code 
- Tax exemption reason code.
- noTax StringReason Code Details 
- Tax exemption reason description.
- taxCnpj String
- Brazilian companies' CNPJ number.
- taxPayer StringId 
- Tay payer identifier.
- taxReg StringNumber 
- Tax registration number.
GetSubscriptionsSubscriptionCollectionItemTaxInfo      
- Giro string
- Companies' GIRO code
- NoTax stringReason Code 
- Tax exemption reason code.
- NoTax stringReason Code Details 
- Tax exemption reason description.
- TaxCnpj string
- Brazilian companies' CNPJ number.
- TaxPayer stringId 
- Tay payer identifier.
- TaxReg stringNumber 
- Tax registration number.
- Giro string
- Companies' GIRO code
- NoTax stringReason Code 
- Tax exemption reason code.
- NoTax stringReason Code Details 
- Tax exemption reason description.
- TaxCnpj string
- Brazilian companies' CNPJ number.
- TaxPayer stringId 
- Tay payer identifier.
- TaxReg stringNumber 
- Tax registration number.
- giro String
- Companies' GIRO code
- noTax StringReason Code 
- Tax exemption reason code.
- noTax StringReason Code Details 
- Tax exemption reason description.
- taxCnpj String
- Brazilian companies' CNPJ number.
- taxPayer StringId 
- Tay payer identifier.
- taxReg StringNumber 
- Tax registration number.
- giro string
- Companies' GIRO code
- noTax stringReason Code 
- Tax exemption reason code.
- noTax stringReason Code Details 
- Tax exemption reason description.
- taxCnpj string
- Brazilian companies' CNPJ number.
- taxPayer stringId 
- Tay payer identifier.
- taxReg stringNumber 
- Tax registration number.
- giro str
- Companies' GIRO code
- no_tax_ strreason_ code 
- Tax exemption reason code.
- no_tax_ strreason_ code_ details 
- Tax exemption reason description.
- tax_cnpj str
- Brazilian companies' CNPJ number.
- tax_payer_ strid 
- Tay payer identifier.
- tax_reg_ strnumber 
- Tax registration number.
- giro String
- Companies' GIRO code
- noTax StringReason Code 
- Tax exemption reason code.
- noTax StringReason Code Details 
- Tax exemption reason description.
- taxCnpj String
- Brazilian companies' CNPJ number.
- taxPayer StringId 
- Tay payer identifier.
- taxReg StringNumber 
- Tax registration number.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.