renatosnrg/sendgrid-api

View on GitHub
lib/sendgrid/api/entities/sender_address.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'sendgrid/api/entities/entity'

module Sendgrid
  module API
    module Entities
      class SenderAddress < Entity

        attribute :identity, :name, :email, :replyto, :address, :city, :state, :zip, :country

      end
    end
  end
end