Class: Stripe::Terminal::ConfigurationService::UpdateParams::Wifi::EnterpriseEapTls
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Terminal::ConfigurationService::UpdateParams::Wifi::EnterpriseEapTls
- Defined in:
- lib/stripe/services/terminal/configuration_service.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
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.
503 504 505 506 507 508 509 510 511 512 513 514 515 |
# File 'lib/stripe/services/terminal/configuration_service.rb', line 503 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
493 494 495 |
# File 'lib/stripe/services/terminal/configuration_service.rb', line 493 def ca_certificate_file @ca_certificate_file end |
#client_certificate_file ⇒ Object
A File ID representing a PEM file containing the client certificate
495 496 497 |
# File 'lib/stripe/services/terminal/configuration_service.rb', line 495 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
497 498 499 |
# File 'lib/stripe/services/terminal/configuration_service.rb', line 497 def private_key_file @private_key_file end |
#private_key_file_password ⇒ Object
Password for the private key file
499 500 501 |
# File 'lib/stripe/services/terminal/configuration_service.rb', line 499 def private_key_file_password @private_key_file_password end |
#ssid ⇒ Object
Name of the WiFi network
501 502 503 |
# File 'lib/stripe/services/terminal/configuration_service.rb', line 501 def ssid @ssid end |