Class: Stripe::Terminal::ConfigurationUpdateParams::Wifi::EnterpriseEapTls
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Terminal::ConfigurationUpdateParams::Wifi::EnterpriseEapTls
- Defined in:
- lib/stripe/params/terminal/configuration_update_params.rb
Instance Attribute Summary collapse
-
#ca_certificate_file ⇒ Object
A File ID representing a PEM file containing the server certificate.
-
#client_certificate_file ⇒ Object
A File ID representing a PEM file containing the client certificate.
-
#private_key_file ⇒ Object
A File ID representing a PEM file containing the client RSA private key.
-
#private_key_file_password ⇒ Object
Password for the private key file.
-
#ssid ⇒ Object
Name of the WiFi network.
Instance Method Summary collapse
-
#initialize(ca_certificate_file: nil, client_certificate_file: nil, private_key_file: nil, private_key_file_password: nil, ssid: nil) ⇒ EnterpriseEapTls
constructor
A new instance of EnterpriseEapTls.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(ca_certificate_file: nil, client_certificate_file: nil, private_key_file: nil, private_key_file_password: nil, ssid: nil) ⇒ EnterpriseEapTls
Returns a new instance of EnterpriseEapTls.
527 528 529 530 531 532 533 534 535 536 537 538 539 |
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 527 def initialize( ca_certificate_file: nil, client_certificate_file: nil, private_key_file: nil, private_key_file_password: nil, ssid: nil ) @ca_certificate_file = ca_certificate_file @client_certificate_file = client_certificate_file @private_key_file = private_key_file @private_key_file_password = private_key_file_password @ssid = ssid end |
Instance Attribute Details
#ca_certificate_file ⇒ Object
A File ID representing a PEM file containing the server certificate
517 518 519 |
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 517 def ca_certificate_file @ca_certificate_file end |
#client_certificate_file ⇒ Object
A File ID representing a PEM file containing the client certificate
519 520 521 |
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 519 def client_certificate_file @client_certificate_file end |
#private_key_file ⇒ Object
A File ID representing a PEM file containing the client RSA private key
521 522 523 |
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 521 def private_key_file @private_key_file end |
#private_key_file_password ⇒ Object
Password for the private key file
523 524 525 |
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 523 def private_key_file_password @private_key_file_password end |
#ssid ⇒ Object
Name of the WiFi network
525 526 527 |
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 525 def ssid @ssid end |