/** This is an automatically generated code sample. 
To make this code sample work in your Oracle Cloud tenancy, 
please replace the values for any parameters whose current values do not fit
your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and 
boolean, number, and enum parameters with values not fitting your use case).
*/

import com.oracle.bmc.ConfigFileReader;
import com.oracle.bmc.auth.AuthenticationDetailsProvider;
import com.oracle.bmc.auth.ConfigFileAuthenticationDetailsProvider;
import com.oracle.bmc.ospgateway.SubscriptionServiceClient;
import com.oracle.bmc.ospgateway.model.*;
import com.oracle.bmc.ospgateway.requests.*;
import com.oracle.bmc.ospgateway.responses.*;
import java.math.BigDecimal;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.Date;
import java.util.UUID;
import java.util.Arrays;


public class AuthorizeSubscriptionPaymentExample {
    public static void main(String[] args) throws Exception {

        /**
         * Create a default authentication provider that uses the DEFAULT
         * profile in the configuration file.
         * Refer to <see href="https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File>the public documentation</see> on how to prepare a configuration file.
         */
        final ConfigFileReader.ConfigFile configFile = ConfigFileReader.parseDefault();
        final AuthenticationDetailsProvider provider = new ConfigFileAuthenticationDetailsProvider(configFile);

        /* Create a service client */
        SubscriptionServiceClient client = SubscriptionServiceClient.builder().build(provider);

        /* Create a request and dependent object(s). */
	AuthorizeSubscriptionPaymentDetails authorizeSubscriptionPaymentDetails = AuthorizeSubscriptionPaymentDetails.builder()
		.subscription(Subscription.builder()
			.id("ocid1.test.oc1..<unique_ID>EXAMPLE-id-Value")
			.subscriptionPlanNumber("EXAMPLE-subscriptionPlanNumber-Value")
			.planType(Subscription.PlanType.FreeTier)
			.timeStart(new Date("Thu Dec 10 05:04:58 UTC 2015"))
			.shipToCustAcctSiteId("ocid1.test.oc1..<unique_ID>EXAMPLE-shipToCustAcctSiteId-Value")
			.shipToCustAcctRoleId("ocid1.test.oc1..<unique_ID>EXAMPLE-shipToCustAcctRoleId-Value")
			.billToCustAccountId("ocid1.test.oc1..<unique_ID>EXAMPLE-billToCustAccountId-Value")
			.isIntentToPay(true)
			.currencyCode("EXAMPLE-currencyCode-Value")
			.gsiOrgCode("EXAMPLE-gsiOrgCode-Value")
			.languageCode("EXAMPLE-languageCode-Value")
			.organizationId("ocid1.test.oc1..<unique_ID>EXAMPLE-organizationId-Value")
			.upgradeState(Subscription.UpgradeState.Upgraded)
			.upgradeStateDetails(Subscription.UpgradeStateDetails.TaxError)
			.accountType(Subscription.AccountType.Personal)
			.taxInfo(TaxInfo.builder()
				.taxPayerId("ocid1.test.oc1..<unique_ID>EXAMPLE-taxPayerId-Value")
				.taxRegNumber("EXAMPLE-taxRegNumber-Value")
				.noTaxReasonCode("EXAMPLE-noTaxReasonCode-Value")
				.noTaxReasonCodeDetails("EXAMPLE-noTaxReasonCodeDetails-Value")
				.taxCnpj("EXAMPLE-taxCnpj-Value")
				.giro("EXAMPLE-giro-Value").build())
			.paymentOptions(new ArrayList<>(Arrays.asList(CreditCardPaymentOption.builder()
					.creditCardType(CreditCardType.Amex)
					.lastDigits("EXAMPLE-lastDigits-Value")
					.nameOnCard("EXAMPLE-nameOnCard-Value")
					.timeExpiration(new Date("Fri Jun 11 19:31:34 UTC 2049"))
					.walletInstrumentId("ocid1.test.oc1..<unique_ID>EXAMPLE-walletInstrumentId-Value")
					.walletTransactionId("ocid1.test.oc1..<unique_ID>EXAMPLE-walletTransactionId-Value").build())))
			.paymentGateway(PaymentGateway.builder()
				.merchantDefinedData(MerchantDefinedData.builder()
					.promoType("EXAMPLE-promoType-Value")
					.cloudAccountName("EXAMPLE-cloudAccountName-Value").build()).build())
			.billingAddress(Address.builder()
				.addressKey("EXAMPLE-addressKey-Value")
				.line1("EXAMPLE-line1-Value")
				.line2("EXAMPLE-line2-Value")
				.line3("EXAMPLE-line3-Value")
				.line4("EXAMPLE-line4-Value")
				.streetName("EXAMPLE-streetName-Value")
				.streetNumber("EXAMPLE-streetNumber-Value")
				.city("EXAMPLE-city-Value")
				.county("EXAMPLE-county-Value")
				.country("EXAMPLE-country-Value")
				.province("EXAMPLE-province-Value")
				.postalCode("EXAMPLE-postalCode-Value")
				.state("EXAMPLE-state-Value")
				.emailAddress("EXAMPLE-emailAddress-Value")
				.companyName("EXAMPLE-companyName-Value")
				.firstName("EXAMPLE-firstName-Value")
				.middleName("EXAMPLE-middleName-Value")
				.lastName("EXAMPLE-lastName-Value")
				.phoneCountryCode("EXAMPLE-phoneCountryCode-Value")
				.phoneNumber("EXAMPLE-phoneNumber-Value")
				.jobTitle("EXAMPLE-jobTitle-Value")
				.departmentName("EXAMPLE-departmentName-Value")
				.internalNumber("EXAMPLE-internalNumber-Value")
				.contributorClass("EXAMPLE-contributorClass-Value")
				.stateInscription("EXAMPLE-stateInscription-Value")
				.municipalInscription("EXAMPLE-municipalInscription-Value").build())
			.timePlanUpgrade(new Date("Thu Oct 23 06:14:41 UTC 2025"))
			.timePersonalToCorporateConv(new Date("Fri Feb 23 07:52:50 UTC 2001")).build())
		.languageCode("EXAMPLE-languageCode-Value")
		.email("EXAMPLE-email-Value").build();

	AuthorizeSubscriptionPaymentRequest authorizeSubscriptionPaymentRequest = AuthorizeSubscriptionPaymentRequest.builder()
		.ospHomeRegion("EXAMPLE-ospHomeRegion-Value")
		.subscriptionId("ocid1.test.oc1..<unique_ID>EXAMPLE-subscriptionId-Value")
		.compartmentId("ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value")
		.authorizeSubscriptionPaymentDetails(authorizeSubscriptionPaymentDetails)
		.ifMatch("EXAMPLE-ifMatch-Value")
		.opcRetryToken("EXAMPLE-opcRetryToken-Value")
		.opcRequestId("PQEG67TCNILZO7UHUU9D<unique_ID>").build();

        /* Send request to the Client */
        AuthorizeSubscriptionPaymentResponse response = client.authorizeSubscriptionPayment(authorizeSubscriptionPaymentRequest);
    }

    
}