# OryClient::UpdateRegistrationFlowWithOidcMethod ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **csrf_token** | **String** | The CSRF Token | [optional] | | **id_token** | **String** | IDToken is an optional id token provided by an OIDC provider If submitted, it is verified using the OIDC provider's public key set and the claims are used to populate the OIDC credentials of the identity. If the OIDC provider does not store additional claims (such as name, etc.) in the IDToken itself, you can use the `traits` field to populate the identity's traits. Note, that Apple only includes the users email in the IDToken. Supported providers are Apple Google | [optional] | | **id_token_nonce** | **String** | IDTokenNonce is the nonce, used when generating the IDToken. If the provider supports nonce validation, the nonce will be validated against this value and is required. | [optional] | | **method** | **String** | Method to use This field must be set to `oidc` when using the oidc method. | | | **provider** | **String** | The provider to register with | | | **traits** | **Object** | The identity traits | [optional] | | **transient_payload** | **Object** | Transient data to pass along to any webhooks | [optional] | | **upstream_parameters** | **Object** | UpstreamParameters are the parameters that are passed to the upstream identity provider. These parameters are optional and depend on what the upstream identity provider supports. Supported parameters are: `login_hint` (string): The `login_hint` parameter suppresses the account chooser and either pre-fills the email box on the sign-in form, or selects the proper session. `hd` (string): The `hd` parameter limits the login/registration process to a Google Organization, e.g. `mycollege.edu`. `prompt` (string): The `prompt` specifies whether the Authorization Server prompts the End-User for reauthentication and consent, e.g. `select_account`. | [optional] | ## Example ```ruby require 'ory-client' instance = OryClient::UpdateRegistrationFlowWithOidcMethod.new( csrf_token: null, id_token: null, id_token_nonce: null, method: null, provider: null, traits: null, transient_payload: null, upstream_parameters: null ) ```