Sha256: afc76c032d710ea7141783e886a3cb92c72954d0a88f89c2e1c91b4ba356c421

Contents?: true

Size: 386 Bytes

Versions: 4

Compression:

Stored size: 386 Bytes

Contents

# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.dirname(__FILE__)

module SendGrid4r
  #
  # SendGrid Web API v3 data container for authentication
  #
  class Auth
    attr_reader :username, :password, :api_key

    def initialize(
      username: nil, password: nil, api_key: nil
    )
      @username = username
      @password = password
      @api_key = api_key
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
sendgrid4r-1.5.0 lib/auth.rb
sendgrid4r-1.4.0 lib/auth.rb
sendgrid4r-1.3.0 lib/auth.rb
sendgrid4r-1.2.1 lib/auth.rb