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.
409 410 411 412 413 414 415 416 417 418 419 420 421 |
# File 'lib/stripe/services/terminal/configuration_service.rb', line 409 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
399 400 401 |
# File 'lib/stripe/services/terminal/configuration_service.rb', line 399 def ca_certificate_file @ca_certificate_file end |
#client_certificate_file ⇒ Object
A File ID representing a PEM file containing the client certificate
401 402 403 |
# File 'lib/stripe/services/terminal/configuration_service.rb', line 401 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
403 404 405 |
# File 'lib/stripe/services/terminal/configuration_service.rb', line 403 def private_key_file @private_key_file end |
#private_key_file_password ⇒ Object
Password for the private key file
405 406 407 |
# File 'lib/stripe/services/terminal/configuration_service.rb', line 405 def private_key_file_password @private_key_file_password end |
#ssid ⇒ Object
Name of the WiFi network
407 408 409 |
# File 'lib/stripe/services/terminal/configuration_service.rb', line 407 def ssid @ssid end |