Skip to content

Commit

Permalink
Merge pull request #8 from wingspanHQ/speakeasy-sdk-regen-1698251083
Browse files Browse the repository at this point in the history
chore: speakeasy sdk regeneration - Generate Client SDKs for Wingspan payments
  • Loading branch information
wingspanandrew authored Oct 27, 2023
2 parents 327a3e5 + 7b933a6 commit fbb1084
Show file tree
Hide file tree
Showing 65 changed files with 3,919 additions and 0 deletions.
2 changes: 2 additions & 0 deletions payments/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# This allows generated code to be indexed correctly
*.cs linguist-generated=false
3 changes: 3 additions & 0 deletions payments/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
obj/
bin/
debug/
15 changes: 15 additions & 0 deletions payments/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,16 @@
# payments

<!-- No SDK Installation -->
<!-- No SDK Example Usage -->
<!-- No SDK Available Operations -->


<!-- Start Dev Containers -->



<!-- End Dev Containers -->

<!-- Placeholder for Future Speakeasy SDK Sections -->


11 changes: 11 additions & 0 deletions payments/RELEASES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@


## 2023-10-25 16:24:41
### Changes
Based on:
- OpenAPI Doc 1.0.0 https://docs.wingspan.app/openapi/6470f38d65c260000c025474
- Speakeasy CLI 1.107.0 (2.171.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [csharp v0.1.0] payments
### Releases
- [NuGet v0.1.0] https://www.nuget.org/packages/openapi/0.1.0 - payments
17 changes: 17 additions & 0 deletions payments/SDK.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SDK", "SDK\SDK.csproj", "{F0CE92B5-F3CC-45A2-AA83-118C38724EB1}"
EndProject

Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F0CE92B5-F3CC-45A2-AA83-118C38724EB1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F0CE92B5-F3CC-45A2-AA83-118C38724EB1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F0CE92B5-F3CC-45A2-AA83-118C38724EB1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F0CE92B5-F3CC-45A2-AA83-118C38724EB1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
24 changes: 24 additions & 0 deletions payments/SDK/Models/Operations/GetBenefitsEnrollmentIdRequest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
//
// Changes to this file may cause incorrect behavior and will be lost when
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
#nullable enable
namespace SDK.Models.Operations
{
using SDK.Utils;

public class GetBenefitsEnrollmentIdRequest
{

/// <summary>
/// Unique identifier
/// </summary>
[SpeakeasyMetadata("pathParam:style=simple,explode=false,name=id")]
public string Id { get; set; } = default!;
}
}
40 changes: 40 additions & 0 deletions payments/SDK/Models/Operations/GetBenefitsEnrollmentIdResponse.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
//
// Changes to this file may cause incorrect behavior and will be lost when
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
#nullable enable
namespace SDK.Models.Operations
{
using SDK.Models.Shared;
using System.Net.Http;
using System;

public class GetBenefitsEnrollmentIdResponse
{

/// <summary>
/// HTTP response content type for this operation
/// </summary>
public string? ContentType { get; set; } = default!;

/// <summary>
/// An Enrollment records
/// </summary>
public Enrollment? Enrollment { get; set; }

/// <summary>
/// HTTP response status code for this operation
/// </summary>
public int StatusCode { get; set; } = default!;

/// <summary>
/// Raw HTTP response; suitable for custom response parsing
/// </summary>
public HttpResponseMessage? RawResponse { get; set; }
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
//
// Changes to this file may cause incorrect behavior and will be lost when
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
#nullable enable
namespace SDK.Models.Operations
{
using SDK.Utils;

public class GetBenefitsPlanEnrollmentIdRequest
{

/// <summary>
/// Unique identifier
/// </summary>
[SpeakeasyMetadata("pathParam:style=simple,explode=false,name=id")]
public string Id { get; set; } = default!;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
//
// Changes to this file may cause incorrect behavior and will be lost when
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
#nullable enable
namespace SDK.Models.Operations
{
using SDK.Models.Shared;
using System.Net.Http;
using System;

public class GetBenefitsPlanEnrollmentIdResponse
{

/// <summary>
/// HTTP response content type for this operation
/// </summary>
public string? ContentType { get; set; } = default!;

/// <summary>
/// An enrollment into a plan
/// </summary>
public PlanEnrollment? PlanEnrollment { get; set; }

/// <summary>
/// HTTP response status code for this operation
/// </summary>
public int StatusCode { get; set; } = default!;

/// <summary>
/// Raw HTTP response; suitable for custom response parsing
/// </summary>
public HttpResponseMessage? RawResponse { get; set; }
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
//
// Changes to this file may cause incorrect behavior and will be lost when
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
#nullable enable
namespace SDK.Models.Operations
{
using SDK.Models.Shared;
using System.Collections.Generic;
using System.Net.Http;
using System;

public class GetBenefitsPlanEnrollmentResponse
{

/// <summary>
/// HTTP response content type for this operation
/// </summary>
public string? ContentType { get; set; } = default!;

/// <summary>
/// List of plan enrollments for a member
/// </summary>
public List<PlanEnrollment>? PlanEnrollments { get; set; }

/// <summary>
/// HTTP response status code for this operation
/// </summary>
public int StatusCode { get; set; } = default!;

/// <summary>
/// Raw HTTP response; suitable for custom response parsing
/// </summary>
public HttpResponseMessage? RawResponse { get; set; }
}
}
40 changes: 40 additions & 0 deletions payments/SDK/Models/Operations/GetBenefitsServiceResponse.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
//
// Changes to this file may cause incorrect behavior and will be lost when
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
#nullable enable
namespace SDK.Models.Operations
{
using SDK.Models.Shared;
using System.Net.Http;
using System;

public class GetBenefitsServiceResponse
{

/// <summary>
/// HTTP response content type for this operation
/// </summary>
public string? ContentType { get; set; } = default!;

/// <summary>
/// Indicates status of service enablement
/// </summary>
public ServiceEnablementResponse? ServiceEnablementResponse { get; set; }

/// <summary>
/// HTTP response status code for this operation
/// </summary>
public int StatusCode { get; set; } = default!;

/// <summary>
/// Raw HTTP response; suitable for custom response parsing
/// </summary>
public HttpResponseMessage? RawResponse { get; set; }
}
}
28 changes: 28 additions & 0 deletions payments/SDK/Models/Operations/PatchBenefitsServiceIdRequest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
//
// Changes to this file may cause incorrect behavior and will be lost when
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
#nullable enable
namespace SDK.Models.Operations
{
using SDK.Models.Shared;
using SDK.Utils;

public class PatchBenefitsServiceIdRequest
{

/// <summary>
/// Unique identifier
/// </summary>
[SpeakeasyMetadata("pathParam:style=simple,explode=false,name=id")]
public string Id { get; set; } = default!;

[SpeakeasyMetadata("request:mediaType=application/json")]
public ServiceEnablementUpdate? ServiceEnablementUpdate { get; set; }
}
}
40 changes: 40 additions & 0 deletions payments/SDK/Models/Operations/PatchBenefitsServiceIdResponse.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
//
// Changes to this file may cause incorrect behavior and will be lost when
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
#nullable enable
namespace SDK.Models.Operations
{
using SDK.Models.Shared;
using System.Net.Http;
using System;

public class PatchBenefitsServiceIdResponse
{

/// <summary>
/// HTTP response content type for this operation
/// </summary>
public string? ContentType { get; set; } = default!;

/// <summary>
/// Indicates status of service enablement
/// </summary>
public ServiceEnablementResponse? ServiceEnablementResponse { get; set; }

/// <summary>
/// HTTP response status code for this operation
/// </summary>
public int StatusCode { get; set; } = default!;

/// <summary>
/// Raw HTTP response; suitable for custom response parsing
/// </summary>
public HttpResponseMessage? RawResponse { get; set; }
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
//
// Changes to this file may cause incorrect behavior and will be lost when
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
#nullable enable
namespace SDK.Models.Shared
{
using Newtonsoft.Json;

public class A71f30be878693b235f8c5f1650be03c9920ca9821526545760476436104c9dc
{

[JsonProperty("deductionIds")]
public object DeductionIds { get; set; } = default!;
}
}
Loading

0 comments on commit fbb1084

Please sign in to comment.