Class: Stripe::Terminal::ConfigurationCreateParams::Wifi::EnterpriseEapTls
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Terminal::ConfigurationCreateParams::Wifi::EnterpriseEapTls
- Defined in:
- lib/stripe/params/terminal/configuration_create_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.
563 564 565 566 567 568 569 570 571 572 573 574 575 |
# File 'lib/stripe/params/terminal/configuration_create_params.rb', line 563 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
553 554 555 |
# File 'lib/stripe/params/terminal/configuration_create_params.rb', line 553 def ca_certificate_file @ca_certificate_file end |
#client_certificate_file ⇒ Object
A File ID representing a PEM file containing the client certificate
555 556 557 |
# File 'lib/stripe/params/terminal/configuration_create_params.rb', line 555 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
557 558 559 |
# File 'lib/stripe/params/terminal/configuration_create_params.rb', line 557 def private_key_file @private_key_file end |
#private_key_file_password ⇒ Object
Password for the private key file
559 560 561 |
# File 'lib/stripe/params/terminal/configuration_create_params.rb', line 559 def private_key_file_password @private_key_file_password end |
#ssid ⇒ Object
Name of the WiFi network
561 562 563 |
# File 'lib/stripe/params/terminal/configuration_create_params.rb', line 561 def ssid @ssid end |