mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00

* Added offboarding survey response to cancellation when FF is on. * Removed service methods to prevent unnecessary upstream registrations * Forgot to actually remove the injected command in the services * Rui's feedback * Add missing summary * Missed [FromBody]
22 lines
536 B
C#
22 lines
536 B
C#
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Core.Entities;
|
|
|
|
public interface ISubscriber
|
|
{
|
|
Guid Id { get; }
|
|
GatewayType? Gateway { get; set; }
|
|
string GatewayCustomerId { get; set; }
|
|
string GatewaySubscriptionId { get; set; }
|
|
string BillingEmailAddress();
|
|
string BillingName();
|
|
string SubscriberName();
|
|
string BraintreeCustomerIdPrefix();
|
|
string BraintreeIdField();
|
|
string BraintreeCloudRegionField();
|
|
bool IsOrganization();
|
|
bool IsUser();
|
|
string SubscriberType();
|
|
bool IsExpired();
|
|
}
|