File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,11 @@ public interface IClient
44
44
/// Gets access to the inbound domains resource of the SparkPost API.
45
45
/// </summary>
46
46
IInboundDomains InboundDomains { get ; }
47
+
48
+ /// <summary>
49
+ /// Gets access to the sending domains resource of the SparkPost API.
50
+ /// </summary>
51
+ ISendingDomains SendingDomains { get ; }
47
52
48
53
/// <summary>
49
54
/// Gets access to the relay webhooks resource of the SparkPost API.
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ public interface ISendingDomains
8
8
Task < CreateSendingDomainResponse > Create ( SendingDomain sendingDomain ) ;
9
9
Task < UpdateSendingDomainResponse > Update ( SendingDomain sendingDomain ) ;
10
10
Task < GetSendingDomainResponse > Retrieve ( string domain ) ;
11
- Task < Response > DeleteByDomain ( string domain ) ;
11
+ Task < Response > Delete ( string domain ) ;
12
12
Task < VerifySendingDomainResponse > Verify ( VerifySendingDomain verifySendingDomain ) ;
13
13
}
14
14
}
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ public async Task<GetSendingDomainResponse> Retrieve(string domain)
102
102
} ;
103
103
}
104
104
105
- public async Task < Response > DeleteByDomain ( string domain )
105
+ public async Task < Response > Delete ( string domain )
106
106
{
107
107
var request = new Request
108
108
{
You can’t perform that action at this time.
0 commit comments