/** * Gravitee.io Portal Rest API * API dedicated to the devportal part of Gravitee * * The version of the OpenAPI document: 3.0.0 * Contact: contact@graviteesource.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ export interface SubscriptionInput { /** * Id of the application which subscribe */ application?: string; /** * Id of the plan to which the application subscribe */ plan?: string; /** * A request message to the api owner why a user want to subscribe */ request?: string; }