3 changed files
Client/HomagGroup.DigitalFactory.ApiGateway.Client | ||
GatewayTokenInformation.cs | ||
GatewayTokenInformationInternationalization.cs + | ||
GatewayTokenInformationLogo.cs + | ||
GatewayTokenInformation.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GatewayTokenInformation.cs+21/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GatewayTokenInformation.cs
Add comment 28 public string ApplicationName { get; set; }
Add comment 29
Add comment 30 /// <summary>
Add comment 31 Plus /// Country id ISO 3166-1 alpha-2 code
Add comment 32 Plus /// (can be null)
Add comment 33 Plus /// </summary>
Add comment 34 Plus /// <example>
Add comment 35 Plus /// DE,EN,...
Add comment 36 Plus /// </example>
Add comment 37 Plus public string CountryId { get; set; }
Add comment 38 Plus
Add comment 39 Plus /// <summary>
Add comment 40 Plus /// Internationalization
Add comment 41 Plus /// (can be null)
Add comment 42 Plus /// </summary>
Add comment 43 Plus public GatewayTokenInformationInternationalization Internationalization { get; set; }
Add comment 44 Plus
Add comment 45 Plus /// <summary>
Add comment 46 Plus /// Logo
Add comment 47 Plus /// (can be null)
Add comment 48 Plus /// </summary>
Add comment 49 Plus public GatewayTokenInformationLogo Logo { get; set; }
Add comment 50 Plus
Add comment 51 Plus /// <summary>
Add comment 31 52 /// The action which are assigned to the access token
Add comment 32 53 /// </summary>
Add comment 33 54 public IList<GatewayActionGroupEntry> ActionGroups { get; } = new List<GatewayActionGroupEntry>();
GatewayTokenInformationInternationalization.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GatewayTokenInformationInternationalization.cs+34/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GatewayTokenInformationInternationalization.cs
Add comment 1 Plus namespace HomagGroup.DigitalFactory.ApiGateway.Client
Add comment 2 Plus {
Add comment 3 Plus /// <summary>
Add comment 4 Plus /// Internationalization
Add comment 5 Plus /// </summary>
Add comment 6 Plus public class GatewayTokenInformationInternationalization
Add comment 7 Plus {
Add comment 8 Plus /// <summary>
Add comment 9 Plus /// // locale identifier, e.g. "en", "de-AT", ...
Add comment 10 Plus /// </summary>
Add comment 11 Plus public string Locale { get; set; }
Add comment 12 Plus
Add comment 13 Plus /// <summary>
Add comment 14 Plus /// Time zone (windows standard).
Add comment 15 Plus /// </summary>
Add comment 16 Plus public string TimeZone { get; set; }
Add comment 17 Plus
Add comment 18 Plus /// <summary>
Add comment 19 Plus /// Currency id based on ISO 4217 https://en.wikipedia.org/wiki/ISO_4217 .
Add comment 20 Plus /// </summary>
Add comment 21 Plus public string Currency { get; set; }
Add comment 22 Plus
Add comment 23 Plus /// <summary>
Add comment 24 Plus /// "metric" or "imperial"
Add comment 25 Plus /// </summary>
Add comment 26 Plus public string SystemOfUnits { get; set; }
Add comment 27 Plus
Add comment 28 Plus /// <summary>
Add comment 29 Plus /// "A4" or "letter"
Add comment 30 Plus /// </summary>
Add comment 31 Plus public string PaperFormat { get; set; }
Add comment 32 Plus }
Add comment 33 Plus }
Add comment 34 Plus
GatewayTokenInformationLogo.cs
/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GatewayTokenInformationLogo.cs+21/Client/HomagGroup.DigitalFactory.ApiGateway.Client/GatewayTokenInformationLogo.cs
Add comment 1 Plus namespace HomagGroup.DigitalFactory.ApiGateway.Client
Add comment 2 Plus {
Add comment 3 Plus /// <summary>
Add comment 4 Plus /// Logo information
Add comment 5 Plus /// </summary>
Add comment 6 Plus public class GatewayTokenInformationLogo
Add comment 7 Plus {
Add comment 8 Plus /// <summary>
Add comment 9 Plus /// SAS, 14-31 days, only PNG
Add comment 10 Plus /// (can be null)
Add comment 11 Plus /// </summary>
Add comment 12 Plus public string Uri { get; set; }
Add comment 13 Plus
Add comment 14 Plus /// <summary>
Add comment 15 Plus /// max 64px (height or width)
Add comment 16 Plus /// (can be null)
Add comment 17 Plus /// </summary>
Add comment 18 Plus public string Thumbnail { get; set; }
Add comment 19 Plus }
Add comment 20 Plus }
Add comment 21 Plus