Class: Stripe::Terminal::ConfigurationUpdateParams::Wifi::EnterpriseEapTls

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/terminal/configuration_update_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#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.



528
529
530
531
532
533
534
535
536
537
538
539
540
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 528

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_fileObject

A File ID representing a PEM file containing the server certificate



518
519
520
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 518

def ca_certificate_file
  @ca_certificate_file
end

#client_certificate_fileObject

A File ID representing a PEM file containing the client certificate



520
521
522
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 520

def client_certificate_file
  @client_certificate_file
end

#private_key_fileObject

A File ID representing a PEM file containing the client RSA private key



522
523
524
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 522

def private_key_file
  @private_key_file
end

#private_key_file_passwordObject

Password for the private key file



524
525
526
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 524

def private_key_file_password
  @private_key_file_password
end

#ssidObject

Name of the WiFi network



526
527
528
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 526

def ssid
  @ssid
end